* check for filename in cache subfolder for files started through cloud connected printers
* send 0% progress when in prepare state and progress is 100
* minor UI tweaks
This commit is contained in:
jneilliii
2024-11-09 21:57:17 -05:00
parent 5c8a9787d4
commit 76f706df19
5 changed files with 13 additions and 3 deletions

View File

@ -22,6 +22,10 @@ $(function () {
self.auth_type = ko.observable("");
self.show_password = ko.pureComputed(function(){
return self.settingsViewModel.settings.plugins.bambu_printer.auth_token() === '';
});
self.show_verification = ko.pureComputed(function(){
return self.auth_type() !== '';
});