2024-04-23 11:03:34 +00:00
|
|
|
export const defaultIcon = '/ui/favicon.ico'
|
|
|
|
|
|
|
|
|
|
// 是否显示字母 / icon
|
2025-03-17 06:04:25 +00:00
|
|
|
export function isAppIcon(url: String | undefined) {
|
2024-04-23 11:03:34 +00:00
|
|
|
return url === defaultIcon ? '' : url
|
|
|
|
|
}
|
2024-07-01 01:45:59 +00:00
|
|
|
|
|
|
|
|
export function isWorkFlow(type: string | undefined) {
|
|
|
|
|
return type === 'WORK_FLOW'
|
|
|
|
|
}
|