We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ae69a commit 77db60dCopy full SHA for 77db60d
extras/popup/popup.js
@@ -690,7 +690,8 @@ async function getFeatures() {
690
if (feature.options) {
691
for (var optionPlace in feature.options) {
692
var option = feature.options[optionPlace];
693
- if (option.type === 4) {
+ let type = option.type
694
+ if (type === 4) {
695
var optionDiv = document.createElement("div");
696
optionDiv.className = "option";
697
var label = document.createElement("label");
@@ -790,7 +791,7 @@ async function getFeatures() {
790
791
}
792
div.appendChild(optionDiv);
793
794
+ if (type !== 4) {
795
input.dataset.validation = btoa(
796
JSON.stringify(option.validation || [])
797
);
0 commit comments