diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-09-12 15:15:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 15:15:51 +0200 |
commit | 52d962bd5346f8879290c332a2e35ad6d12c84df (patch) | |
tree | 04c5d08ae0e6c7881189495d8b12515f39568767 /core | |
parent | 4e5430c81c9ffcef98c086d6ca3d5b8581620000 (diff) | |
parent | e0a8669a25ee8e473e7aaa802ebe29856fe215b2 (diff) | |
download | nextcloud-server-52d962bd5346f8879290c332a2e35ad6d12c84df.tar.gz nextcloud-server-52d962bd5346f8879290c332a2e35ad6d12c84df.zip |
Merge pull request #34018 from nextcloud/use-primary-button-updater
Use primary button in updater
Diffstat (limited to 'core')
-rw-r--r-- | core/js/update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js index 1613c3cc93b..2132dc9c578 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -92,7 +92,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(); }) ); |