diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-12 09:16:09 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-09-12 09:16:09 +0200 |
commit | e0a8669a25ee8e473e7aaa802ebe29856fe215b2 (patch) | |
tree | 62ff563128d2921b21177aa8f63d58e09435441a | |
parent | 71d0ea84c340ff1e4c7ab85672e1a6a0be673c7d (diff) | |
download | nextcloud-server-e0a8669a25ee8e473e7aaa802ebe29856fe215b2.tar.gz nextcloud-server-e0a8669a25ee8e473e7aaa802ebe29856fe215b2.zip |
Use primary button in updater
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-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(); }) ); |