diff options
Diffstat (limited to 'core/js/update.js')
-rw-r--r-- | core/js/update.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/core/js/update.js b/core/js/update.js index 1613c3cc93b..419ab65449f 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -1,11 +1,7 @@ -/* - * Copyright (c) 2014 - * - * This file is licensed under the Affero General Public License version 3 - * or later. - * - * See the COPYING-README file. - * +/** + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2014 ownCloud Inc. + * SPDX-License-Identifier: AGPL-3.0-or-later */ (function() { @@ -92,7 +88,7 @@ if (hasWarnings) { $el.find('.update-show-detailed').before( - $('<input type="button" class="update-continue" value="'+t('core', 'Continue to {productName}', OC.Update.options)+'">').on('click', function() { + $('<input type="button" class="primary" value="'+t('core', 'Continue to {productName}', OC.Update.options)+'">').on('click', function() { window.location.reload(); }) ); |