Skip to content

Commit

Permalink
chore: remove New suffix from new dashboards-bar dir
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikThePendric committed Nov 28, 2024
1 parent 13c225e commit fd5dfb3
Show file tree
Hide file tree
Showing 33 changed files with 11 additions and 20 deletions.
22 changes: 5 additions & 17 deletions i18n/en.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,12 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"POT-Creation-Date: 2024-11-26T15:41:22.294Z\n"
"PO-Revision-Date: 2024-11-26T15:41:22.297Z\n"
"POT-Creation-Date: 2024-11-28T16:32:58.551Z\n"
"PO-Revision-Date: 2024-11-28T16:32:58.551Z\n"

msgid "Untitled dashboard"
msgstr "Untitled dashboard"

msgid "Cannot create a dashboard while offline"
msgstr "Cannot create a dashboard while offline"

msgid "Create new dashboard"
msgstr "Create new dashboard"

msgid "Search for a dashboard"
msgstr "Search for a dashboard"

msgid "Show fewer dashboards"
msgstr "Show fewer dashboards"

msgid "Show more dashboards"
msgstr "Show more dashboards"

msgid "Dashboards"
msgstr "Dashboards"

Expand Down Expand Up @@ -120,6 +105,9 @@ msgstr "No dashboards available."
msgid "Create a new dashboard using the + button."
msgstr "Create a new dashboard using the + button."

msgid "Search for a dashboard"
msgstr "Search for a dashboard"

msgid "No dashboards found"
msgstr "No dashboards found"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions src/components/DashboardsBar/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { DashboardsBar } from './DashboardsBar.js'

export default DashboardsBar
2 changes: 1 addition & 1 deletion src/pages/start/LandingPage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types'
import React, { useEffect } from 'react'
import { DashboardsBar } from '../../components/DashboardsBarNew/DashboardsBar.js'
import DashboardsBar from '../../components/DashboardsBar/index.js'
import StartScreen from './StartScreen.js'

const LandingPage = ({ username, onMount }) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/view/CacheableViewDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PropTypes from 'prop-types'
import React, { useEffect } from 'react'
import { connect } from 'react-redux'
import { acClearSelected } from '../../actions/selected.js'
import { DashboardsBar } from '../../components/DashboardsBarNew/DashboardsBar.js'
import DashboardsBar from '../../components/DashboardsBar/index.js'
import LoadingMask from '../../components/LoadingMask.js'
import NoContentMessage from '../../components/NoContentMessage.js'
import getCacheableSectionId from '../../modules/getCacheableSectionId.js'
Expand Down
2 changes: 1 addition & 1 deletion src/pages/view/ViewDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
} from '../../actions/selected.js'
import { apiPostDataStatistics } from '../../api/dataStatistics.js'
import DashboardContainer from '../../components/DashboardContainer.js'
import { DashboardsBar } from '../../components/DashboardsBarNew/DashboardsBar.js'
import DashboardsBar from '../../components/DashboardsBar/index.js'
import { setHeaderbarVisible } from '../../modules/setHeaderbarVisible.js'
import { useCacheableSection } from '../../modules/useCacheableSection.js'
import { sGetDashboardById } from '../../reducers/dashboards.js'
Expand Down

0 comments on commit fd5dfb3

Please sign in to comment.