mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 17:52:34 -05:00
Added clickable more info links to designer validation issues (#19365)
* added clickable more info links to designer validation issues * fix selection issue * remove more info if none * change quote style * clear the dom node
This commit is contained in:
@@ -239,7 +239,12 @@ export type DesignerPropertyPath = (string | number)[];
|
||||
export const DesignerRootObjectPath: DesignerPropertyPath = [];
|
||||
|
||||
export type DesignerIssueSeverity = 'error' | 'warning' | 'information';
|
||||
export type DesignerIssue = { description: string, propertyPath?: DesignerPropertyPath, severity: DesignerIssueSeverity };
|
||||
export type DesignerIssue = {
|
||||
description: string,
|
||||
propertyPath?: DesignerPropertyPath,
|
||||
severity: DesignerIssueSeverity,
|
||||
moreInfoLink?: string;
|
||||
};
|
||||
|
||||
export interface DesignerEditResult {
|
||||
isValid: boolean;
|
||||
|
||||
Reference in New Issue
Block a user