Skip to content

Commit

Permalink
Add new or remove extra tags and styles (#3967)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrey Myssak <[email protected]>
Signed-off-by: Sergey Myssak <[email protected]>
  • Loading branch information
SergeyMyssak and andreymyssak committed May 21, 2023
1 parent e737790 commit aa3f05e
Show file tree
Hide file tree
Showing 8 changed files with 112 additions and 116 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [Vis Builder] Add persistence to visualizations inner state ([#3751](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3751))
- [Table Visualization] Move format table, consolidate types and add unit tests ([#3397](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3397))
- [Multiple Datasource] Support Amazon OpenSearch Serverless ([#3957](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3957))
- [Saved Objects Management] Add new or remove extra tags and styles ([#4069](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/4069))

### 🐛 Bug Fixes

- [Vis Builder] Fixes auto bounds for timeseries bar chart visualization ([2401](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2401))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ export const Intro = () => {
iconType="alert"
color="warning"
>
<div>
<p>
<FormattedMessage
id="savedObjectsManagement.view.howToModifyObjectDescription"
defaultMessage="Modifying objects is for advanced users only. Object properties are not validated and invalid objects could cause errors, data loss, or worse. Unless someone with intimate knowledge of the code told you to be in here, you probably shouldn&rsquo;t be."
/>
</div>
</p>
</EuiCallOut>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ export const NotFoundErrors = ({ type }: NotFoundErrors) => {
iconType="alert"
color="danger"
>
<div>{getMessage()}</div>
<div>
<p>{getMessage()}</p>
<p>
<FormattedMessage
id="savedObjectsManagement.view.howToFixErrorDescription"
defaultMessage="If you know what this error means, go ahead and fix it &mdash; otherwise click the delete button above."
/>
</div>
</p>
</EuiCallOut>
);
};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -918,16 +918,16 @@ export class Flyout extends Component<FlyoutProps, FlyoutState> {
return (
<Fragment>
{legacyFileWarning && (
<span>
<>
<EuiSpacer size="s" />
{legacyFileWarning}
</span>
</>
)}
{indexPatternConflictsWarning && (
<span>
<>
<EuiSpacer size="s" />
{indexPatternConflictsWarning}
</span>
</>
)}
</Fragment>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@
.savedObjectsManagementImportSummary__errorCount {
color: $euiColorDangerText;
}

.savedObjectsManagementImportSummary__icon {
margin-left: $euiSizeXS;
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Relationships extends Component<RelationshipsProps, RelationshipsSt
}
color="danger"
>
{error}
<p>{error}</p>
</EuiCallOut>
);
}
Expand Down

0 comments on commit aa3f05e

Please sign in to comment.