mirror of
https://github.com/Spythere/station-manager-2.0.git
synced 2026-05-03 05:28:13 +00:00
feature: obsługa hashy
This commit is contained in:
@@ -200,6 +200,7 @@ export default defineComponent({
|
||||
const newSt: SceneryRowItem = {
|
||||
name,
|
||||
url: '',
|
||||
hash: '',
|
||||
lines: '',
|
||||
project: null,
|
||||
projectUrl: null,
|
||||
|
||||
+4
-1
@@ -1,6 +1,7 @@
|
||||
export type Availability = 'default' | 'unavailable' | 'nonPublic' | 'abandoned' | 'nonDefault';
|
||||
export type ChangeProp =
|
||||
| 'name'
|
||||
| 'hash'
|
||||
| 'url'
|
||||
| 'lines'
|
||||
| 'project'
|
||||
@@ -17,9 +18,10 @@ export type ChangeProp =
|
||||
export enum HeaderTypes {
|
||||
name = 'Nazwa',
|
||||
url = 'URL',
|
||||
hash = 'Hash',
|
||||
lines = 'Linie',
|
||||
project = 'Projekt',
|
||||
projectUrl = "URL projektu",
|
||||
projectUrl = 'URL projektu',
|
||||
reqLevel = 'Wym. poziom',
|
||||
signalType = 'Sygnalizacja',
|
||||
controlType = 'Sterowanie',
|
||||
@@ -41,6 +43,7 @@ export enum AvailabilityTypes {
|
||||
|
||||
export interface SceneryRowItem {
|
||||
id: string;
|
||||
hash: string;
|
||||
name: string;
|
||||
url: string;
|
||||
lines: string;
|
||||
|
||||
@@ -76,6 +76,7 @@ export default defineComponent({
|
||||
AuthState,
|
||||
headerNameList: {
|
||||
name: 'Nazwa',
|
||||
hash: 'Hash',
|
||||
url: 'URL',
|
||||
lines: 'Linie',
|
||||
project: 'Projekt',
|
||||
@@ -196,8 +197,7 @@ table {
|
||||
border-collapse: collapse;
|
||||
|
||||
width: 100%;
|
||||
max-width: 2000px;
|
||||
min-width: 1450px;
|
||||
min-width: 1800px;
|
||||
}
|
||||
|
||||
table thead {
|
||||
|
||||
Reference in New Issue
Block a user