Skip to content

Commit ace8aa6

Browse files
CopilotAndreasBoehm
andcommitted
Show AC section for all inverters plus individual phase sections for 3-phase
Co-authored-by: AndreasBoehm <1270749+AndreasBoehm@users.noreply.github.com>
1 parent f4b03c0 commit ace8aa6

File tree

14 files changed

+10807
-4156
lines changed

14 files changed

+10807
-4156
lines changed

webapp/.prettierrc.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"$schema": "https://json.schemastore.org/prettierrc",
3-
"semi": true,
4-
"tabWidth": 4,
5-
"singleQuote": true,
6-
"printWidth": 120,
7-
"trailingComma": "es5"
2+
"$schema": "https://json.schemastore.org/prettierrc",
3+
"semi": true,
4+
"tabWidth": 4,
5+
"singleQuote": true,
6+
"printWidth": 120,
7+
"trailingComma": "es5"
88
}

webapp/.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
2+
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
33
}

webapp/env.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/// <reference types="vite/client" />
22

3-
import { Router, Route } from 'vue-router'
3+
import { Router, Route } from 'vue-router';
44
declare module 'vue' {
5-
interface ComponentCustomProperties {
6-
$router: Router
7-
$route: Route
8-
}
5+
interface ComponentCustomProperties {
6+
$router: Router;
7+
$route: Route;
8+
}
99
}

webapp/eslint.config.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
/* eslint-env node */
2-
import js from "@eslint/js";
3-
import pluginVue from 'eslint-plugin-vue'
4-
import vueTsEslintConfig from '@vue/eslint-config-typescript'
2+
import js from '@eslint/js';
3+
import pluginVue from 'eslint-plugin-vue';
4+
import vueTsEslintConfig from '@vue/eslint-config-typescript';
55

66
export default [
77
js.configs.recommended,
88
...pluginVue.configs['flat/essential'],
99
...vueTsEslintConfig(),
1010
{
11-
files: [
12-
"**/*.vue",
13-
"**/*.js",
14-
"**/*.jsx",
15-
"**/*.cjs",
16-
"**/*.mjs",
17-
"**/*.ts",
18-
"**/*.tsx",
19-
"**/*.cts",
20-
"**/*.mts",
21-
],
22-
languageOptions: {
23-
ecmaVersion: 2022
24-
},
25-
}
26-
]
11+
files: [
12+
'**/*.vue',
13+
'**/*.js',
14+
'**/*.jsx',
15+
'**/*.cjs',
16+
'**/*.mjs',
17+
'**/*.ts',
18+
'**/*.tsx',
19+
'**/*.cts',
20+
'**/*.mts',
21+
],
22+
languageOptions: {
23+
ecmaVersion: 2022,
24+
},
25+
},
26+
];

webapp/index.html

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" href="/favicon.ico" />
6-
<link rel="shortcut icon" type="image/png" href="/favicon.png">
7-
<link rel="apple-touch-icon" href="/favicon.png">
8-
<link rel="manifest" href='/site.webmanifest' />
9-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
10-
<title>OpenDTU-OnBattery</title>
11-
</head>
12-
<body>
13-
<noscript>
14-
<strong>We're sorry but OpenDTU-OnBattery doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
15-
</noscript>
16-
<div id="app"></div>
17-
<script type="module" src="/src/main.ts"></script>
18-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
7+
<link rel="apple-touch-icon" href="/favicon.png" />
8+
<link rel="manifest" href="/site.webmanifest" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
10+
<title>OpenDTU-OnBattery</title>
11+
</head>
12+
<body>
13+
<noscript>
14+
<strong
15+
>We're sorry but OpenDTU-OnBattery doesn't work properly without JavaScript enabled. Please enable it to
16+
continue.</strong
17+
>
18+
</noscript>
19+
<div id="app"></div>
20+
<script type="module" src="/src/main.ts"></script>
21+
</body>
1922
</html>

0 commit comments

Comments
 (0)