commit 231804bd4d5ed7cf18468d6b29c3925924d01c09
parent c24eb76a5c5f7dce8951561b56b041c0ecfbc24b
Author: Katja (ctucx) <git@ctu.cx>
Date: Mon, 3 Feb 2025 06:46:01 +0100
parent c24eb76a5c5f7dce8951561b56b041c0ecfbc24b
Author: Katja (ctucx) <git@ctu.cx>
Date: Mon, 3 Feb 2025 06:46:01 +0100
settingsView: remove `experimental` flag on `show prices`
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/settingsView.js b/src/settingsView.js @@ -59,7 +59,7 @@ const settingsTemplate = () => html` <div class="flex-column"> <span>${t('options')}:</span> - <label id="showPricesElement"><input type="checkbox" id="showPrices" ?checked=${settings.showPrices}> ${t('show-prices')} (${t("experimental")})<br></label> + <label id="showPricesElement"><input type="checkbox" id="showPrices" ?checked=${settings.showPrices}> ${t('show-prices')}<br></label> <label id="showDS100Element"><input type="checkbox" id="showDS100" ?checked=${settings.showDS100}> ${t('showds100')}<br></label> <label><input type="checkbox" id="combineDateTime" ?checked=${settings.combineDateTime}> ${t('combineDateTime')}</label> </div>