Skip to content
Snippets Groups Projects
Commit ca4158be authored by rhenck's avatar rhenck
Browse files

[editor] Fix Table icon

The icon 'table' does look different for some reason. Taking the second 
best available icon.
parent bca7378f
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,6 @@ import { InstantiationEror } from 'common/util/errors';
import { environment } from 'common/environment';
import { TableComponent } from 'common/components/compound-elements/table/table.component';
import { ElementFactory } from 'common/util/element.factory';
import { ClozeDocument } from 'common/models/elements/compound-elements/cloze/cloze';
export class TableElement extends CompoundElement implements PositionedUIElement, TableProperties {
type: UIElementType = 'table';
......@@ -24,7 +23,7 @@ export class TableElement extends CompoundElement implements PositionedUIElement
styling: BasicStyles & BorderStyles;
static title: string = 'Tabelle';
static icon: string = 'table';
static icon: string = 'table_view';
constructor(element?: TableProperties) {
super(element);
......
......@@ -4,8 +4,6 @@ import { registerLocaleData } from '@angular/common';
import localeDe from '@angular/common/locales/de';
import { VeronaAPIService, StartCommand } from './services/verona-api.service';
import { UnitService } from './services/unit-services/unit.service';
import { MatIconRegistry } from '@angular/material/icon';
import { DomSanitizer } from '@angular/platform-browser';
@Component({
selector: 'aspect-editor',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment