Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2020-07-21 20:04:48 +0300
committerGitHub <noreply@github.com>2020-07-21 20:04:48 +0300
commite6531916cff587f010da6c08b11e4be1c7a21275 (patch)
tree177a59a4d071b2b45cdab9c55c0beff982e19e90 /plugins
parentb6e09d08ef48447737c5bff7a0865df3ccea3efb (diff)
fix select for new materialize (#16228)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreVisualizations/angularjs/series-picker/series-picker.component.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/CoreVisualizations/angularjs/series-picker/series-picker.component.html b/plugins/CoreVisualizations/angularjs/series-picker/series-picker.component.html
index 94c4ee3535..cfd36998dc 100644
--- a/plugins/CoreVisualizations/angularjs/series-picker/series-picker.component.html
+++ b/plugins/CoreVisualizations/angularjs/series-picker/series-picker.component.html
@@ -40,12 +40,14 @@
class="pickRow"
ng-click="$ctrl.optionSelected(rowConfig.matcher, $ctrl.rowStates)"
>
- <input
- class="select"
- ng-checked="$ctrl.rowStates[rowConfig.matcher]"
- ng-attr-type="{{ $ctrl.multiselect ? 'checkbox' : 'radio' }}"
- />
- <label>{{ rowConfig.label }}</label>
+ <label>
+ <input
+ class="select"
+ ng-checked="$ctrl.rowStates[rowConfig.matcher]"
+ ng-attr-type="{{ $ctrl.multiselect ? 'checkbox' : 'radio' }}"
+ />
+ <span>{{ rowConfig.label }}</span>
+ </label>
</p>
</div>
</div> \ No newline at end of file