endSessionDialog: Fix DialogContent const

Fallout from commit 0258c7a518 ...
This commit is contained in:
Florian Müllner 2014-09-11 17:04:36 +01:00
parent 93205eefb9
commit a4c1b55111

View File

@ -140,10 +140,10 @@ const DialogType = {
}; };
const DialogContent = { const DialogContent = {
DialogType.LOGOUT: logoutDialogContent, 0 /* DialogType.LOGOUT */: logoutDialogContent,
DialogType.SHUTDOWN: shutdownDialogContent, 1 /* DialogType.SHUTDOWN */: shutdownDialogContent,
DialogType.RESTART: restartDialogContent, 2 /* DialogType.RESTART */: restartDialogContent,
DialogType.UPDATE_RESTART: restartInstallDialogContent 3 /* DialogType.UPDATE_RESTART */: restartInstallDialogContent
}; };
const MAX_USERS_IN_SESSION_DIALOG = 5; const MAX_USERS_IN_SESSION_DIALOG = 5;