Trigger deploy fe
continuous-integration/drone/push Build is failing Details

This commit is contained in:
qvalentin 2023-04-09 16:46:49 +02:00
parent 52ceeea89d
commit 24de532fdd
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ steps:
- yarn install - yarn install
- yarn build - yarn build
- cp -r dist /drone-shared/ - cp -r dist /drone-shared/
- curl --user $NEW_USER:NEW_PASSWORD https://logs.filefighter.de/deploy-jitsi-rooms-fe.log
trigger: trigger:
trigger: trigger:
event: event:

View File

@ -6,7 +6,7 @@ interface props {
function SidebarHeader({ sidebarVisibility }: props) { function SidebarHeader({ sidebarVisibility }: props) {
if (sidebarVisibility == "full") { if (sidebarVisibility == "full") {
return <h2>hi there</h2>; return <h2>hi there :(</h2>;
} else if (sidebarVisibility == "small") { } else if (sidebarVisibility == "small") {
return <h2>hi</h2>; return <h2>hi</h2>;
} }