mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
Fixing errors with userTypes
This commit is contained in:
@@ -6,11 +6,11 @@ export const tool = defineTool('csv', {
|
||||
name: 'csv:csvRowsToColumns.title',
|
||||
description: 'csv:csvRowsToColumns.description',
|
||||
shortDescription: 'csv:csvRowsToColumns.shortDescription',
|
||||
longDescription: 'csv:csvRowsToColumns.longDescription'
|
||||
longDescription: 'csv:csvRowsToColumns.longDescription',
|
||||
userTypes: ['General Users', 'Students', 'Developers']
|
||||
},
|
||||
path: 'csv-rows-to-columns',
|
||||
icon: 'fluent:text-arrow-down-right-column-24-filled',
|
||||
keywords: ['csv', 'rows', 'columns', 'transpose'],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
||||
@@ -5,13 +5,13 @@ export const tool = defineTool('csv', {
|
||||
i18n: {
|
||||
name: 'csv:csvToJson.title',
|
||||
description: 'csv:csvToJson.description',
|
||||
shortDescription: 'csv:csvToJson.shortDescription'
|
||||
shortDescription: 'csv:csvToJson.shortDescription',
|
||||
userTypes: ['General Users', 'Students', 'Developers']
|
||||
},
|
||||
|
||||
path: 'csv-to-json',
|
||||
icon: 'lets-icons:json-light',
|
||||
|
||||
keywords: ['csv', 'json', 'convert', 'transform', 'parse'],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
||||
@@ -6,12 +6,12 @@ export const tool = defineTool('csv', {
|
||||
name: 'csv:csvToTsv.title',
|
||||
description: 'csv:csvToTsv.description',
|
||||
shortDescription: 'csv:csvToTsv.shortDescription',
|
||||
longDescription: 'csv:csvToTsv.longDescription'
|
||||
longDescription: 'csv:csvToTsv.longDescription',
|
||||
userTypes: ['General Users', 'Students', 'Developers']
|
||||
},
|
||||
|
||||
path: 'csv-to-tsv',
|
||||
icon: 'codicon:keyboard-tab',
|
||||
keywords: ['csv', 'tsv', 'convert', 'transform', 'parse'],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
||||
@@ -5,13 +5,13 @@ export const tool = defineTool('csv', {
|
||||
i18n: {
|
||||
name: 'csv:csvToXml.title',
|
||||
description: 'csv:csvToXml.description',
|
||||
shortDescription: 'csv:csvToXml.shortDescription'
|
||||
shortDescription: 'csv:csvToXml.shortDescription',
|
||||
userTypes: ['General Users', 'Students', 'Developers']
|
||||
},
|
||||
|
||||
path: 'csv-to-xml',
|
||||
icon: 'mdi-light:xml',
|
||||
|
||||
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
||||
@@ -6,12 +6,12 @@ export const tool = defineTool('csv', {
|
||||
name: 'csv:swapCsvColumns.title',
|
||||
description: 'csv:swapCsvColumns.description',
|
||||
shortDescription: 'csv:swapCsvColumns.shortDescription',
|
||||
longDescription: 'csv:swapCsvColumns.longDescription'
|
||||
longDescription: 'csv:swapCsvColumns.longDescription',
|
||||
userTypes: ['General Users', 'Students', 'Developers']
|
||||
},
|
||||
|
||||
path: 'swap-csv-columns',
|
||||
icon: 'eva:swap-outline',
|
||||
keywords: ['csv', 'swap', 'columns'],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user