Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoScheuermann committed Apr 22, 2021
2 parents 2792474 + 1d6e36b commit 16e6573
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 2 deletions.
Binary file added ressources/Graph3.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Graph4.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Graph5.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Graph6.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Orderbook3.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Orderbook4.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Orderbook5.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ressources/Orderbook6.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/utils/BrokerManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class BrokerManager {
export interface Broker {
id: string;
token: string;
type: 'private' | 'business' | 'simulation' | 'stockmarket';
type: 'private' | 'business' | 'simulation' | 'stockmarket' | 'liquiditydonor';
displayName: string;
banned?: boolean;
}
2 changes: 1 addition & 1 deletion src/utils/dtos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export class CreateShareDto {
}

export class CreateBrokerDto {
type!: 'private' | 'business' | 'simulation' | 'stockmarket';
type!: 'private' | 'business' | 'simulation' | 'stockmarket' | 'liquiditydonor';
displayName!: string;
}
4 changes: 4 additions & 0 deletions src/views/options/broker/CreateBroker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
title="simulation"
:defaultSelected="dto.type === 'simulation'"
/>
<tc-select-item
title="liquiditydonor"
:defaultSelected="dto.type === 'liquiditydonor'"
/>
</tc-select>

<br />
Expand Down
4 changes: 4 additions & 0 deletions src/views/options/broker/EditBroker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
title="simulation"
:defaultSelected="broker.type === 'simulation'"
/>
<tc-select-item
title="liquiditydonor"
:defaultSelected="broker.type === 'liquiditydonor'"
/>
<tc-select-item
title="stockmarket"
:defaultSelected="broker.type === 'stockmarket'"
Expand Down

0 comments on commit 16e6573

Please sign in to comment.