sumba 2.2.1 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,9 +12,6 @@ async function afterBuildLocals (locals, req) {
|
|
|
12
12
|
}
|
|
13
13
|
items.push({ icon: 'envelope', 't:tooltip': 'contactForm', href: routePath('sumba:/help/contact-form') })
|
|
14
14
|
items.push({ icon: 'chat', 't:tooltip': 'troubleTickets', href: routePath('sumba:/help/trouble-tickets') })
|
|
15
|
-
for (const item of items) {
|
|
16
|
-
if (locals._meta.url.startsWith(item.href)) item.active = true
|
|
17
|
-
}
|
|
18
15
|
locals.sidebar = items
|
|
19
16
|
}
|
|
20
17
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<c:form-input type="email" name="email" label-floating />
|
|
6
6
|
<c:form-input name="firstName" col="6-lg" label-floating />
|
|
7
7
|
<c:form-input name="lastName" col="6-lg" label-floating />
|
|
8
|
-
<c:form-check name="agree" col="12" value="true" t:label="agreeToTerm%s%s|<%= _routePath('sumba:/info/terms-conditions') %>|termsConditions" />
|
|
8
|
+
<c:form-check wrapper-class="text-start" name="agree" col="12" value="true" t:label="agreeToTerm%s%s|<%= _routePath('sumba:/info/terms-conditions') %>|termsConditions" />
|
|
9
9
|
</c:form>
|
|
10
10
|
<% if (!page.noLinks) { %>
|
|
11
11
|
<c:div move-to="#footer" flex="justify-content:center">
|
package/package.json
CHANGED