mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Edit dashboard UI text (#32520)
* Update DashboardPermissions.tsx * Update DashboardRow.tsx * Update AutoRefreshIntervals.tsx * Update JsonEditorSettings.tsx * ui updates * Update FolderPickerCtrl.ts * Update LinkSettingsEdit.tsx * Update LinkSettingsHeader.tsx * Update LinkSettingsList.tsx * Update actions.ts * Update AngularPanelOptions.tsx * Update getFieldOverrideElements.tsx * Update OptionsPaneOptions.tsx * Update types.ts * Update usePanelLatestData.ts * Update VisualizationButton.tsx * Update RowOptionsModal.tsx * Update SaveDashboardAsForm.tsx * Update SaveDashboardForm.tsx * Update SaveProvisionedDashboardForm.tsx * Update SaveDashboardErrorProxy.tsx * text edits * Update ShareSnapshot.tsx * Update PanelTypeCard.tsx * Update TransformationsEditor.tsx * Update panel.test.ts * text edits * Update DashboardSrv.ts * Update VersionHistoryButtons.tsx * Update DiffViewer.tsx * Update VersionHistoryTable.tsx * Update DashboardGrid.tsx * Update DashboardPanel.tsx * Update PanelPluginError.tsx * Update DashboardMigrator.ts
This commit is contained in:
@@ -98,7 +98,7 @@ export const LinkSettingsEdit: React.FC<LinkSettingsEditProps> = ({ mode, editLi
|
||||
)}
|
||||
{linkSettings.type === 'link' && (
|
||||
<>
|
||||
<Field label="Url">
|
||||
<Field label="URL">
|
||||
<Input name="url" value={linkSettings.url} onChange={onChange} />
|
||||
</Field>
|
||||
<Field label="Tooltip">
|
||||
|
||||
@@ -17,7 +17,7 @@ export const LinkSettingsHeader: React.FC<LinkSettingsHeaderProps> = ({ onNavCli
|
||||
<HorizontalGroup align="center" justify="space-between">
|
||||
<h3>
|
||||
<span onClick={onNavClick} className={isEditing ? 'pointer' : ''}>
|
||||
Dashboard Links
|
||||
Dashboard links
|
||||
</span>
|
||||
{isEditing && (
|
||||
<span>
|
||||
|
||||
@@ -36,13 +36,13 @@ export const LinkSettingsList: React.FC<LinkSettingsListProps> = ({ dashboard, s
|
||||
{dashboard.links.length === 0 ? (
|
||||
<EmptyListCTA
|
||||
onClick={setupNew}
|
||||
title="There are no dashboard links added yet"
|
||||
title="No dashboard links added yet"
|
||||
buttonIcon="link"
|
||||
buttonTitle="Add Dashboard Link"
|
||||
infoBoxTitle="What are Dashboard Links?"
|
||||
buttonTitle="Add dashboard link"
|
||||
infoBoxTitle="What are dashboard links?"
|
||||
infoBox={{
|
||||
__html:
|
||||
'<p>Dashboard Links allow you to place links to other dashboards and web sites directly below the dashboard header.</p>',
|
||||
'<p>Dashboard links allow you to place links to other dashboards and web sites directly below the dashboard header.</p>',
|
||||
}}
|
||||
/>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user