From 91ceee16922cf408dbdc988b7f0cbf4d68369d40 Mon Sep 17 00:00:00 2001
From: Saagar Arya <51128536+skarya22@users.noreply.github.com>
Date: Tue, 17 Oct 2023 15:04:08 -0400
Subject: [PATCH] [media] React Warning on Upload Tab (#8721)
Modified Form.js to no longer use the "selected" attribute in option tags, and rather the "value" attribute of select tags.
Resolves #8702
---
jsx/Form.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jsx/Form.js b/jsx/Form.js
index 3e77e5e443a..6799ed07394 100644
--- a/jsx/Form.js
+++ b/jsx/Form.js
@@ -597,7 +597,7 @@ class SelectElement extends Component {
}
if (this.props.placeholder !== '') {
- optionList.unshift();
}