fix: typo (#306)

Co-authored-by: louistsang <zengjunkun@eolink.com>
This commit is contained in:
LouisTsang 2023-05-05 13:54:48 +08:00 committed by GitHub
parent 136c3485b0
commit fb70e6da0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 6 deletions

View File

@ -4,6 +4,7 @@
"dbaeumer.vscode-eslint",
"stylelint.vscode-stylelint",
"esbenp.prettier-vscode",
"heybourn.headwind"
"heybourn.headwind",
"streetsidesoftware.code-spell-checker"
]
}

View File

@ -89,5 +89,11 @@
},
"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
}
},
"cSpell.words": [
"antd",
"borderless",
"iconpark",
"Postcat"
]
}

View File

@ -29,7 +29,7 @@ export class ChatRobotFormComponent {
@Input() loading: boolean = false;
/**
* Send message triggle event
* Send message trigger event
*/
@Output() readonly send = new EventEmitter<{ message: string }>();
sendMessage() {

View File

@ -6,7 +6,7 @@ import { storageTab, TabItem } from './tab.model';
@Injectable()
/**
* Storage tab data
* All data chagne in this service
* All data change in this service
*/
export class TabStorageService {
tabOrder: number[] = [];

View File

@ -127,7 +127,7 @@ export class EoTabComponent implements OnInit, OnDestroy {
]
});
}
//Quick see tabs change in templete,for debug,can be deleted
//Quick see tabs change in template,for debug,can be deleted
// ! just for debug
getConsoleTabs() {
const tabs = [];
@ -163,7 +163,7 @@ export class EoTabComponent implements OnInit, OnDestroy {
/**
* Get Tab id by child component resource id
*
* @param uuid queryparams uuid
* @param uuid queryParams uuid
* @returns
*/
getTabByParamsID(uuid: TabItem['params']['uuid']) {