This commit is contained in:
Andreas Knuth 2026-02-06 19:22:14 -06:00
parent 715220f6d5
commit 7e00b4d71b
1 changed files with 1 additions and 16 deletions

View File

@ -47,19 +47,7 @@ import { TOOLBAR_OPTIONS } from '../../utils/defaults';
],
providers: [
TitleCasePipe,
DatePipe,
provideQuillConfig({
modules: {
syntax: true,
toolbar: [
['bold', 'italic', 'underline'],
[{ header: [1, 2, 3, false] }],
[{ list: 'ordered' }, { list: 'bullet' }],
[{ color: [] }],
['clean'],
],
},
}) as any,
DatePipe
],
templateUrl: './account.component.html',
styleUrls: [
@ -77,9 +65,6 @@ export class AccountComponent {
editorModules = TOOLBAR_OPTIONS;
env = environment;
faTrash = APP_ICONS.faTrash;
quillModules = {
toolbar: [['bold', 'italic', 'underline', 'strike'], [{ list: 'ordered' }, { list: 'bullet' }], [{ header: [1, 2, 3, 4, 5, 6, false] }], [{ color: [] }, { background: [] }], ['clean']],
};
uploadParams: UploadParams;
validationMessages: ValidationMessage[] = [];
customerTypeOptions: Array<{ value: string; label: string }> = [];