Unverified Commit bfd3f7b7 authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #113 from jumpserver/dev_beta

[Update] 调整分辨率
parents 7eaa5792 29dfdd16
import {Component, Inject, OnInit} from '@angular/core'; import {Component, OnInit} from '@angular/core';
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material'; import { MatDialogRef} from '@angular/material';
import {SettingService} from '@app/services'; import {SettingService} from '@app/services';
import {Setting} from '@app/model'; import {Setting} from '@app/model';
...@@ -10,12 +10,11 @@ import {Setting} from '@app/model'; ...@@ -10,12 +10,11 @@ import {Setting} from '@app/model';
styles: ['.mat-form-field { width: 100%;}'] styles: ['.mat-form-field { width: 100%;}']
}) })
export class ElementSettingComponent implements OnInit { export class ElementSettingComponent implements OnInit {
solutionsChoices = ['Auto', '1024x768', '1366x768', '1400x900']; solutionsChoices = ['Auto', '1024x768', '1366x768', '1600x900', '1920×1080'];
boolChoices = [{name: 'Yes', value: '1'}, {name: 'No', value: '0'}]; boolChoices = [{name: 'Yes', value: '1'}, {name: 'No', value: '0'}];
setting: Setting; setting: Setting;
constructor(public dialogRef: MatDialogRef<ElementSettingComponent>, constructor(public dialogRef: MatDialogRef<ElementSettingComponent>,
@Inject(MAT_DIALOG_DATA) public data: any,
private settingSrv: SettingService) { private settingSrv: SettingService) {
} }
......
...@@ -188,7 +188,7 @@ export class Monitor { ...@@ -188,7 +188,7 @@ export class Monitor {
export class Setting { export class Setting {
rdpSolution: string = '1024x768'; rdpSolution: string = 'Auto';
fontSize: number = 14; fontSize: number = 14;
isLoadTreeAsync: string = '1'; isLoadTreeAsync: string = '1';
isSkipAllManualPassword: string = '0'; isSkipAllManualPassword: string = '0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment