Skip to content

Commit 6cf125e

Browse files
committed
chore: switch productName back to codeflare, and use productTitle for the UI instead
1 parent 3636554 commit 6cf125e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

bin/codeflare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,5 @@ if [ ! -f ~/.codeflare ] && [ $(uname) = Linux ]; then
165165
fi
166166

167167
# otherwise, we launch the UI version
168-
"$NODE" "$HEADLESS"/codeflare-dashboard.min.js -- $EXTRAPREFIX $*
168+
"$NODE" "$HEADLESS"/codeflare.min.js -- $EXTRAPREFIX $*
169169
stty sane

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "CodeFlare.app",
33
"version": "0.0.26",
44
"description": "",
5-
"main": "dist/headless/codeflare-dashboard.min.js",
5+
"main": "dist/headless/codeflare.min.js",
66
"scripts": {
77
"watch:source": "tsc --build . --watch",
88
"compile": "npx tsc --build . && npx kui-babel && npx kui-prescan",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"productName": "CodeFlare Dashboard",
3-
"productTitle": "CodeFlare"
2+
"productName": "CodeFlare",
3+
"productTitle": "CodeFlare Dashboard"
44
}

plugins/plugin-client-default/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import {
3232
import { Search } from "@kui-shell/plugin-electron-components"
3333

3434
import { version } from "@kui-shell/client/package.json"
35-
import { productName } from "@kui-shell/client/config.d/name.json"
35+
import { productTitle } from "@kui-shell/client/config.d/name.json"
3636

3737
/**
3838
* We will set this bit when the user dismisses the Welcome to Kui
@@ -56,7 +56,7 @@ export default function renderMain(props: KuiProps) {
5656
<Kui
5757
noHelp
5858
version={version}
59-
productName={productName}
59+
productName={productTitle}
6060
lightweightTables
6161
{...props}
6262
isPopup={false}

0 commit comments

Comments
 (0)