Test deployment
continuous-integration/drone/push Build is passing Details

This commit is contained in:
qvalentin 2023-04-09 17:02:53 +02:00
parent ee74bbdcb0
commit c86873fc28
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ steps:
from_secret: NEW_PASSWORD
commands:
- echo $NEW_USER user
- curl --user $NEW_USER:$NEW_PASSWORD https://logs.filefighter.de/deploy-jitsi-rooms-fe.log
- curl -f --user $NEW_USER:$NEW_PASSWORD https://logs.filefighter.de/deploy-jitsi-rooms-fe.log
trigger:
trigger:
event:

View File

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