fix(ui): use СуперСам and normal order composition heading
This commit is contained in:
parent
9be5f81ffe
commit
74de57f3fc
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "SuperSam Доставка",
|
"name": "СуперСам Доставка",
|
||||||
"short_name": "SuperSam",
|
"short_name": "СуперСам",
|
||||||
"description": "Панель управления доставкой стройматериалов с уведомлениями.",
|
"description": "Панель управления доставкой стройматериалов с уведомлениями.",
|
||||||
"start_url": "/dashboard",
|
"start_url": "/dashboard",
|
||||||
"scope": "/",
|
"scope": "/",
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
const isLocalhost = self.location.hostname === "localhost" || self.location.hostname === "127.0.0.1";
|
const isLocalhost = self.location.hostname === "localhost" || self.location.hostname === "127.0.0.1";
|
||||||
|
|
||||||
if (!isLocalhost) {
|
if (!isLocalhost) {
|
||||||
const STATIC_CACHE = "construction-delivery-static-v92";
|
const STATIC_CACHE = "construction-delivery-static-v93";
|
||||||
const RUNTIME_CACHE = "construction-delivery-runtime-v92";
|
const RUNTIME_CACHE = "construction-delivery-runtime-v93";
|
||||||
const APP_SHELL_URLS = ["/", "/index.html", "/manifest.webmanifest", "/icons/icon-192.png", "/icons/icon-512.png"];
|
const APP_SHELL_URLS = ["/", "/index.html", "/manifest.webmanifest", "/icons/icon-192.png", "/icons/icon-512.png"];
|
||||||
|
|
||||||
self.addEventListener("install", (event) => {
|
self.addEventListener("install", (event) => {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
SuperSam — Web Push Sender
|
СуперСам — Web Push Sender
|
||||||
Отправляет push-уведомления подписанным клиентам.
|
Отправляет push-уведомления подписанным клиентам.
|
||||||
Каскад: push → 30 мин ждём → fallback на SMS.
|
Каскад: push → 30 мин ждём → fallback на SMS.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ export const OrderCompositionPanel = ({ invitation = {} }) => {
|
||||||
className="flex w-full items-center justify-between text-left"
|
className="flex w-full items-center justify-between text-left"
|
||||||
onClick={() => setIsExpanded(!isExpanded)}
|
onClick={() => setIsExpanded(!isExpanded)}
|
||||||
>
|
>
|
||||||
<p className="text-sm uppercase tracking-[0.18em] text-[var(--color-text-muted)]">
|
<p className="text-sm font-semibold text-[var(--color-text)]">
|
||||||
Состав заказа{reference && reference !== "Счет —" ? ` ${reference}` : ""}
|
Состав заказа{reference && reference !== "Счет —" ? ` ${reference}` : ""}
|
||||||
</p>
|
</p>
|
||||||
<span className="flex items-center gap-2 text-sm text-[var(--color-text-muted)]">
|
<span className="flex items-center gap-2 text-sm text-[var(--color-text-muted)]">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue