minifix(GUI): warning modal size class (#838)

The `settings-dangerous-modal` modal size class doesn't exist anymore,
and was renamed to `warning-modal`. This was causing the exclamation
sign from the header to not be displayed in red, as it should.

Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-11-07 14:25:37 +02:00 committed by GitHub
parent 71a73ab6c8
commit 1cc2cb9bad

View File

@ -36,7 +36,7 @@ module.exports = function(ModalService) {
return ModalService.open({
template: './components/warning-modal/templates/warning-modal.tpl.html',
controller: 'WarningModalController as modal',
size: 'settings-dangerous-modal',
size: 'warning-modal',
resolve: {
message: _.constant(message)
}