Skip to content

Commit

Permalink
Merge branch 'develop-2.0.0' of https://github.com/FederatedAI/FATE-B…
Browse files Browse the repository at this point in the history
…oard into develop-2.0.0
  • Loading branch information
idwenwen committed Dec 21, 2023
2 parents 48f8b54 + 5d066b3 commit 80f1492
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions bin/service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ module=fateboard
version=2.0.0


if test -f "${fatepath}/fate/fate_flow/bin/init_env.sh";then
source ${fatepath}/fate/fate_flow/bin/init_env.sh
if test -f "${fatepath}/fate_flow/bin/init_env.sh";then
source ${fatepath}/fate_flow/bin/init_env.sh
echo "JAVA_HOME=$JAVA_HOME"
else
echo "file not found:${fatepath}/fate/fate_flow/bin/init_env.sh"
echo "file not found:${fatepath}/fate_flow/bin/init_env.sh"
exit
fi

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import './Selection.scss';
import FSelection from './Selection.vue';
import FSelectionChart from './SelectionChart.vue';

const SelectionInstall = (app: any) => {
app.component('FSelection', FSelection)
app.component('FSelectionChart', FSelectionChart)
}

export default SelectionInstall
import './Selection.scss';
import FSelection from './Selection.vue';
import FSelectionChart from './SelectionChart.vue';

const SelectionInstall = (app: any) => {
app.component('FSelection', FSelection)
app.component('FSelectionChart', FSelectionChart)
}

export default SelectionInstall

0 comments on commit 80f1492

Please sign in to comment.