diff --git a/components/core/header.templ b/components/core/header.templ index f7a9cd0..f41470d 100644 --- a/components/core/header.templ +++ b/components/core/header.templ @@ -78,6 +78,13 @@ templ Header() { .web2-button:hover { background: #1787d4; } + .web2-button-group { + display: flex; + flex-wrap: wrap; + } + .web2-button-group .web2-button { + margin: 0 0.5rem 0.5rem 0; + } .web2-list li { background: #ffffff; border: 1px solid var(--web2-border); diff --git a/components/core/header_templ.go b/components/core/header_templ.go index d261f00..8aa0189 100644 --- a/components/core/header_templ.go +++ b/components/core/header_templ.go @@ -44,7 +44,7 @@ func Header() templ.Component { if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "\" rel=\"stylesheet\">") + templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "\" rel=\"stylesheet\">") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } diff --git a/components/views/index.templ b/components/views/index.templ index 3e6c4bb..50d101c 100644 --- a/components/views/index.templ +++ b/components/views/index.templ @@ -23,7 +23,7 @@ templ Index(info BuildInfo) {

Chargeback Intelligence Dashboard

Point in time snapshots of consumption.

-
+
Hourly Snapshots Daily Snapshots Monthly Snapshots diff --git a/components/views/index_templ.go b/components/views/index_templ.go index 34b411f..21ec093 100644 --- a/components/views/index_templ.go +++ b/components/views/index_templ.go @@ -47,7 +47,7 @@ func Index(info BuildInfo) templ.Component { if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } - templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "
vCTP Console

Chargeback Intelligence Dashboard

Point in time snapshots of consumption.

Build Time

") + templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "

vCTP Console

Chargeback Intelligence Dashboard

Point in time snapshots of consumption.

Build Time

") if templ_7745c5c3_Err != nil { return templ_7745c5c3_Err } diff --git a/scripts/drone.sh b/scripts/drone.sh index 5837726..51b9f83 100755 --- a/scripts/drone.sh +++ b/scripts/drone.sh @@ -35,7 +35,7 @@ do starttime=$(TZ=Australia/Sydney date +%Y-%m-%dT%T%z) echo "build commences at $starttime" - env GOOS=$GOOS GOARCH=$GOARCH go build -trimpath -ldflags="-X main.version=$package_version -X main.commit=$commit -X main.buildTime=$buildtime" -o build/$output_name $package + env GOOS=$GOOS GOARCH=$GOARCH go build -trimpath -ldflags="-X main.version=$package_version -X main.sha1ver=$commit -X main.buildTime=$buildtime" -o build/$output_name $package if [ $? -ne 0 ]; then echo 'An error has occurred! Aborting the script execution...' exit 1