Skip to content

Commit 76e002d

Browse files
committed
chore: tidy up merge
Signed-off-by: Stef3st <[email protected]>
1 parent 83b3072 commit 76e002d

File tree

82 files changed

+2365
-2413
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+2365
-2413
lines changed

.github/workflows/add-pr-to-board.yml

Lines changed: 0 additions & 103 deletions
This file was deleted.

.github/workflows/build-and-deploy.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/save-pr-data-to-file.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

packages/compas-open-scd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "open-scd",
3-
"version": "0.33.0",
2+
"name": "compas-open-scd",
3+
"version": "0.33.6",
44
"repository": "https://github.com/openscd/open-scd.git",
55
"description": "A bottom-up substation configuration designer for projects described using SCL `IEC 61850-6` Edition 2 or greater.",
66
"keywords": [

packages/compas-open-scd/src/Hosting.ts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,9 @@ import { ActionDetail, List } from '@material/mwc-list';
1616
import { ListItem } from '@material/mwc-list/mwc-list-item';
1717

1818
import { Mixin, newPendingStateEvent } from './foundation.js';
19-
<<<<<<< HEAD:packages/open-scd/src/Hosting.ts
20-
import { HistoringElement } from './Historing.js';
21-
import { Plugin, PluggingElement, pluginIcons } from './Plugging.js';
22-
=======
2319
import { UserInfoEvent } from './compas/foundation.js';
2420
import { LoggingElement } from './Logging.js';
2521
import { PluggingElement, Plugin, pluginIcons } from './Plugging.js';
26-
>>>>>>> main:packages/compas-open-scd/src/Hosting.ts
2722
import { SettingElement } from './Setting.js';
2823

2924
interface MenuItem {
@@ -45,12 +40,12 @@ interface MenuPlugin {
4540
run: () => Promise<void>;
4641
}
4742

48-
/** Mixin that hosts the UI for Plugins, Settings and Historing */
43+
/** Mixin that hosts the UI for Plugins, Settings and Logging */
4944
export type HostingElement = Mixin<typeof Hosting>;
5045

5146
export function Hosting<
5247
TBase extends new (...args: any[]) => PluggingElement &
53-
HistoringElement &
48+
LoggingElement &
5449
SettingElement
5550
>(Base: TBase) {
5651
class HostingElement extends Base {
@@ -185,19 +180,12 @@ export function Hosting<
185180
},
186181
...validators,
187182
{
188-
icon: 'list',
183+
icon: 'history',
189184
name: 'menu.viewLog',
190185
actionItem: true,
191186
action: (): void => this.logUI.show(),
192187
kind: 'static',
193188
},
194-
{
195-
icon: 'history',
196-
name: 'menu.viewHistory',
197-
actionItem: true,
198-
action: (): void => this.historyUI.show(),
199-
kind: 'static',
200-
},
201189
{
202190
icon: 'rule',
203191
name: 'menu.viewDiag',

0 commit comments

Comments
 (0)