| 1 |
import { HeaderStyleConfirm } from '@agent/workflows/theme/components/HeaderStyleConfirm'; |
| 2 |
import { isExtendableHeader } from '@agent/workflows/theme/tools/update-header-style'; |
| 3 |
|
| 4 |
const { abilities } = window.extAgentData; |
| 5 |
|
| 6 |
export default { |
| 7 |
available: () => abilities?.canEditThemes && isExtendableHeader(), |
| 8 |
id: 'change-header-style', |
| 9 |
whenFinished: { component: HeaderStyleConfirm }, |
| 10 |
}; |
| 11 |
|