commit
30540ac706
2 changed files with 11 additions and 0 deletions
|
|
@ -50,6 +50,7 @@ export const TabloEventsSection = ({ tablo, isAdmin }: TabloEventsSectionProps)
|
|||
|
||||
const formatTime = (timeStr: string) => {
|
||||
if (!timeStr) return "";
|
||||
|
||||
return timeStr.slice(0, 5); // HH:MM
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -32,11 +32,21 @@
|
|||
},
|
||||
"deploy:staging": {
|
||||
"dependsOn": ["build:staging"],
|
||||
"passThroughEnv": [
|
||||
"CLOUDFLARE_ACCOUNT_ID",
|
||||
"CLOUDFLARE_API_TOKEN",
|
||||
"CUSTOM_BUILD_VAR"
|
||||
],
|
||||
"cache": false,
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"deploy:prod": {
|
||||
"dependsOn": ["build:prod"],
|
||||
"passThroughEnv": [
|
||||
"CLOUDFLARE_ACCOUNT_ID",
|
||||
"CLOUDFLARE_API_TOKEN",
|
||||
"CUSTOM_BUILD_VAR"
|
||||
],
|
||||
"cache": false,
|
||||
"outputLogs": "new-only"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue