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:
authorStefan Giehl <stefan@matomo.org>2021-02-16 19:43:42 +0300
committerGitHub <noreply@github.com>2021-02-16 19:43:42 +0300
commit059af24bb8b1542bc2fd7f09bcf8b86fcc051413 (patch)
tree0463bebec03fbec3ff375a231e8c8ca06249a574 /plugins/Dashboard
parent9a0616393849811161324be9e0572130907c21cf (diff)
Fix HTML structure of create dashboard box (#17224)
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/templates/embeddedIndex.twig13
1 files changed, 8 insertions, 5 deletions
diff --git a/plugins/Dashboard/templates/embeddedIndex.twig b/plugins/Dashboard/templates/embeddedIndex.twig
index d5c3c52411..fbcf1e5364 100644
--- a/plugins/Dashboard/templates/embeddedIndex.twig
+++ b/plugins/Dashboard/templates/embeddedIndex.twig
@@ -83,14 +83,17 @@
<input type="text" name="newDashboardName" id="createDashboardName" value=""/>
</p>
<p>
- <input type="radio" checked="checked" name="type" value="default" id="dashboard_type_default" />
- <label for="dashboard_type_default">{{ 'Dashboard_DefaultDashboard'|translate }}</label>
+ <label>
+ <input type="radio" checked="checked" name="type" value="default" id="dashboard_type_default" />
+ <span>{{ 'Dashboard_DefaultDashboard'|translate }}</span>
+ </label>
</p>
<p>
- <input type="radio" name="type" value="empty" id="dashboard_type_empty" />
- <label for="dashboard_type_empty">{{ 'Dashboard_EmptyDashboard'|translate }}</label>
+ <label>
+ <input type="radio" name="type" value="empty" id="dashboard_type_empty" />
+ <span>{{ 'Dashboard_EmptyDashboard'|translate }}</span>
+ </label>
</p>
-
</div>
<input role="yes" type="button" value="{{ 'General_Ok'|translate }}"/>
<input role="no" type="button" value="{{ 'General_Cancel'|translate }}"/>