docs: added a user guide for prices bulk editor (#4569)
* docs: added bulk editor user guide * fixed shortcut
This commit is contained in:
8
www/docs/src/utils/get-os-shortcut.ts
Normal file
8
www/docs/src/utils/get-os-shortcut.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function getOsShortcut() {
|
||||
const isMacOs =
|
||||
typeof navigator !== "undefined"
|
||||
? navigator.userAgent.toLowerCase().indexOf("mac") !== 0
|
||||
: true
|
||||
|
||||
return isMacOs ? "⌘" : "Ctrl"
|
||||
}
|
||||
Reference in New Issue
Block a user