mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
Merge pull request #7181 from wandji20/wb-SCI-10316
Fix preview error for label template code editor [SCI-10316]
This commit is contained in:
commit
ab45a1060a
1 changed files with 7 additions and 0 deletions
|
@ -84,6 +84,13 @@ const DPI_RESOLUTION_OPTIONS = [
|
|||
{ value: 24, label: '600 dpi' }
|
||||
];
|
||||
|
||||
const DPMM_RESOLUTION_OPTIONS = [
|
||||
{ value: 6, label: '6 dpmm (152 dpi)' },
|
||||
{ value: 8, label: '8 dpmm (203 dpi)' },
|
||||
{ value: 12, label: '12 dpmm (300 dpi)' },
|
||||
{ value: 24, label: '24 dpmm (600 dpi)' }
|
||||
];
|
||||
|
||||
import DropdownSelector from '../../shared/legacy/dropdown_selector.vue'
|
||||
|
||||
export default {
|
||||
|
|
Loading…
Reference in a new issue