1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

refactor(nomad): sync frontend with EE [EE-3353] (#7758)

This commit is contained in:
Chaim Lev-Ari 2022-11-13 12:29:25 +02:00 committed by GitHub
parent 78dcba614d
commit 881e99df53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
68 changed files with 1799 additions and 17 deletions

11
app/react/constants.ts Normal file
View file

@ -0,0 +1,11 @@
export const BROWSER_OS_PLATFORM = getOs();
function getOs() {
const { userAgent } = navigator;
if (userAgent.includes('Windows')) {
return 'win';
}
return userAgent.includes('Mac') ? 'mac' : 'lin';
}