Skip to content

Commit 924c9a8

Browse files
committed
fixup! test: mark htmx-related tests as critical
1 parent 2b93810 commit 924c9a8

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/main/java/ru/mystamps/web/feature/site/ResourceUrl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class ResourceUrl {
3131
public static final String STATIC_RESOURCES_URL = "https://stamps.filezz.ru";
3232

3333
// MUST be updated when any of our resources were modified
34-
public static final String RESOURCES_VERSION = "v0.4.7.1";
34+
public static final String RESOURCES_VERSION = "v0.4.7.2";
3535

3636
private static final String CATALOG_UTILS_JS = "/public/js/" + RESOURCES_VERSION + "/utils/CatalogUtils.min.js";
3737
private static final String COLLECTION_INFO_JS = "/public/js/" + RESOURCES_VERSION + "/collection/info.min.js";

src/main/webapp/WEB-INF/static/styles/main.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,7 @@ label {
173173
column-count: 5;
174174
}
175175
}
176+
177+
.total_price {
178+
font-weight: bold;
179+
}

src/main/webapp/WEB-INF/views/collection/estimation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ <h3 class="text-center" th:text="#{t_collection_of(${ownerName})}">
122122
Workaround for "Table Footer Should Contain" keyword from SeleniumLibrary that unable to find values within <th> tag.
123123
See for details: https://github.com/robotframework/SeleniumLibrary/issues/1436
124124
*/-->
125-
<td style="font-weight: bold"
125+
<td class="total_price"
126126
th:with="totalRub=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'RUB'].![price])},totalUsd=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'USD'].![price])},totalEur=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'EUR'].![price])},totalCzk=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'CZK'].![price])},totalByn=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'BYN'].![price])},totalUah=${#aggregates.sum(seriesOfCollection.?[price != null and currency.toString() == 'UAH'].![price])}">
127127
<span th:text="|${totalRub} RUB|" th:if="${totalRub != null}" th:remove="tag">14.4 RUB</span>
128128
<br th:if="${totalUsd != null and totalRub != null}" />

0 commit comments

Comments
 (0)