Fixed typo in QuestInfoView class name.

This commit is contained in:
Daan Vanden Bosch 2019-09-14 22:13:44 +02:00
parent ddf5ff1bef
commit 7ec05ac9a1
4 changed files with 33 additions and 33 deletions

View File

@ -1,26 +0,0 @@
.quest_editor_QuesInfoView {
box-sizing: border-box;
padding: 3px;
overflow: auto;
outline: none;
}
.quest_editor_QuesInfoView table {
width: 100%;
}
.quest_editor_QuesInfoView th {
text-align: left;
}
.quest_editor_QuesInfoView .core_TextInput {
width: 100%;
}
.quest_editor_QuesInfoView .core_TextArea {
width: 100%;
}
.quest_editor_QuesInfoView textarea {
width: 100%;
}

View File

@ -3,7 +3,7 @@ import { create_element, el } from "../../core/gui/dom";
import { QuestEditorToolBar } from "./QuestEditorToolBar";
import GoldenLayout, { Container, ContentItem, ItemConfigType } from "golden-layout";
import { quest_editor_ui_persister } from "../persistence/QuestEditorUiPersister";
import { QuesInfoView } from "./QuesInfoView";
import { QuestInfoView } from "./QuestInfoView";
import "golden-layout/src/css/goldenlayout-base.css";
import "../../core/gui/golden_layout_theme.css";
import { NpcCountsView } from "./NpcCountsView";
@ -18,7 +18,7 @@ const logger = Logger.get("quest_editor/gui/QuestEditorView");
// Don't change these values, as they are persisted in the user's browser.
const VIEW_TO_NAME = new Map<new () => ResizableWidget, string>([
[QuesInfoView, "quest_info"],
[QuestInfoView, "quest_info"],
[NpcCountsView, "npc_counts"],
[QuestRendererView, "quest_renderer"],
[AsmEditorView, "asm_editor"],
@ -53,7 +53,7 @@ const DEFAULT_LAYOUT_CONTENT: ItemConfigType[] = [
{
title: "Info",
type: "component",
componentName: VIEW_TO_NAME.get(QuesInfoView),
componentName: VIEW_TO_NAME.get(QuestInfoView),
isClosable: false,
},
{

View File

@ -0,0 +1,26 @@
.quest_editor_QuestInfoView {
box-sizing: border-box;
padding: 3px;
overflow: auto;
outline: none;
}
.quest_editor_QuestInfoView table {
width: 100%;
}
.quest_editor_QuestInfoView th {
text-align: left;
}
.quest_editor_QuestInfoView .core_TextInput {
width: 100%;
}
.quest_editor_QuestInfoView .core_TextArea {
width: 100%;
}
.quest_editor_QuestInfoView textarea {
width: 100%;
}

View File

@ -6,10 +6,10 @@ import { NumberInput } from "../../core/gui/NumberInput";
import { Disposer } from "../../core/observable/Disposer";
import { TextInput } from "../../core/gui/TextInput";
import { TextArea } from "../../core/gui/TextArea";
import "./QuesInfoView.css";
import "./QuestInfoView.css";
import { DisabledView } from "./DisabledView";
export class QuesInfoView extends ResizableWidget {
export class QuestInfoView extends ResizableWidget {
private readonly table_element = el.table();
private readonly episode_element: HTMLElement;
private readonly id_input = this.disposable(new NumberInput());
@ -40,7 +40,7 @@ export class QuesInfoView extends ResizableWidget {
private readonly quest_disposer = this.disposable(new Disposer());
constructor() {
super(el.div({ class: "quest_editor_QuesInfoView", tab_index: -1 }));
super(el.div({ class: "quest_editor_QuestInfoView", tab_index: -1 }));
const quest = quest_editor_store.current_quest;
const no_quest = quest.map(q => q == undefined);
@ -91,6 +91,6 @@ export class QuesInfoView extends ResizableWidget {
}),
);
this.finalize_construction(QuesInfoView.prototype);
this.finalize_construction(QuestInfoView.prototype);
}
}