added helm chart install progress bars

This commit is contained in:
Chris Zhu
2025-04-02 18:06:15 -07:00
parent c7b5d84891
commit 92144df625
8 changed files with 129 additions and 47 deletions

View File

@@ -4,7 +4,6 @@ export default class extends Controller {
static targets = ["container"]
connect() {
console.log("connected")
// Scroll to the bottom of the container
this.scrollToBottom();

View File

@@ -0,0 +1,16 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
connect() {
debugger
const progress = this.element;
let value = 0;
setInterval(() => {
value = (value + 1) % 101;
progress.value = value;
}, 15);
}
}