Actualiser assets/js/app.js
CI / PHP Syntax Check (push) Has been cancelled
CI / JavaScript Lint (push) Has been cancelled
CI / Docker Build Test (push) Has been cancelled
CI / Validate Translation Files (push) Has been cancelled
CI / Auto-merge develop → main (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled

This commit is contained in:
2026-06-18 17:30:45 +00:00
parent 751b18ba3c
commit 5ce935de49
+4
View File
@@ -6120,6 +6120,10 @@ function setReviewConfirmed(inventoryId) {
api('app_settings_save', {}, 'POST', { settings: { review_confirmed: c } }).catch(() => {}); api('app_settings_save', {}, 'POST', { settings: { review_confirmed: c } }).catch(() => {});
} }
/** Return map of product IDs the user has marked as "no expiry needed". */
function _getNoExpiryDismissed() {
return _noExpiryDismissedCache || {};
}
/** Permanently mark a product as "no expiry needed" for this browser. */ /** Permanently mark a product as "no expiry needed" for this browser. */
function _dismissNoExpiry(productId) { function _dismissNoExpiry(productId) {
const m = Object.assign({}, _noExpiryDismissedCache || {}); const m = Object.assign({}, _noExpiryDismissedCache || {});