Browse Source

Use primary button in updater

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Carl Schwan 1 year ago
parent
commit
e0a8669a25
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/js/update.js

+ 1 - 1
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();
 						})
 					);