dashboard: remove checkbox in background image branding

This commit is contained in:
Johannes Zellner
2024-06-25 16:25:52 +02:00
parent 6f37bde55d
commit a4dd6cc928
5 changed files with 20 additions and 11 deletions

View File

@@ -829,7 +829,6 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
Client.prototype.hasCloudronBackground = function (callback) {
get('/api/v1/branding/cloudron_background', null, function (error, data, status) {
console.log('hasCloudronBackground...')
if (error && error.statusCode !== 404) callback(error);
else if (error) callback(null, false);
else callback(null, status === 200);