diff --git a/src/actions/index.js b/src/actions/index.js index e169c38900..43583214a2 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -326,36 +326,6 @@ export function toggleBookmark(bookmark, runId) { }; } -export const UPDATE_RUN_TITLE = 'UPDATE_RUN_TITLE'; - -/** - * Update Run title - * @param {String} title - * @param {string} runId - */ -export function updateRunTitle(title, runId) { - return { - type: UPDATE_RUN_TITLE, - title, - runId, - }; -} - -export const UPDATE_RUN_NOTES = 'UPDATE_RUN_NOTES'; - -/** - * Update Run Notes - * @param {String} notes - * @param {string} runId - */ -export function updateRunNotes(notes, runId) { - return { - type: UPDATE_RUN_NOTES, - notes, - runId, - }; -} - export const UPDATE_STATE_FROM_OPTIONS = 'UPDATE_STATE_FROM_OPTIONS'; /** diff --git a/src/components/app/app.scss b/src/components/app/app.scss index bd53527605..7968fa1624 100644 --- a/src/components/app/app.scss +++ b/src/components/app/app.scss @@ -25,24 +25,6 @@ --color-base-20: #{colors.$grey-300}; --color-black-10: #{colors.$white-200}; --color-border-line: #{colors.$white-500}; - - // Experiment tracking colors below - --color-exp-tracking-bg: #{colors.$white-0}; - --color-exp-tracking-metadata: #{colors.$white-0}; - --color-exp-tracking-datasets: #{colors.$white-100}; - --color-metrics-plot-text: #{colors.$grey-200}; - --color-metrics-plot-text-bold: #{colors.$black-900}; - --color-metrics-plot-axis-ends: #{colors.$grey-800}; - --color-metrics-plot-parallel-coords-line: #{colors.$white-200}; - --color-metrics-plot-parallel-coords-line-hover: #{colors.$black-0}; - --color-metrics-plot-parallel-coords-axis-hover: #{colors.$grey-800}; - --color-metrics-plot-tooltip-value: #{colors.$white-0}; - --color-metrics-plot-tooltip-label: #{colors.$grey-300}; - --color-metrics-plot-time-series-metric-line: #{colors.$grey-200}; - --color-metrics-plot-time-series-axis: #{colors.$grey-300}; - --color-metrics-plot-time-series-run-line: #{colors.$grey-100}; - --color-metrics-plot-time-series-run-line-hovered: #{colors.$black-0}; - --color-metrics-plot-time-series-dotted-line: #{colors.$grey-600}; } .kui-theme--dark { @@ -67,24 +49,6 @@ --color-run-list-hover: #{colors.$slate-0}; --color-base-20: #{colors.$grey-800}; --color-black-10: #{colors.$slate-700}; - - // Experiment tracking colors below - --color-exp-tracking-bg: #{colors.$slate-900}; - --color-exp-tracking-metadata: #{colors.$slate-800}; - --color-exp-tracking-datasets: #{colors.$black-850}; - --color-metrics-plot-text: #{colors.$grey-900}; - --color-metrics-plot-text-bold: #{colors.$white-0}; - --color-metrics-plot-axis-ends: #{colors.$grey-300}; - --color-metrics-plot-parallel-coords-line: #{colors.$slate-300}; - --color-metrics-plot-parallel-coords-line-hover: #{colors.$grey-400}; - --color-metrics-plot-parallel-coords-axis-hover: #{colors.$white-900}; - --color-metrics-plot-tooltip-value: #{colors.$black-900}; - --color-metrics-plot-tooltip-label: #{colors.$black-500}; - --color-metrics-plot-time-series-metric-line: #{colors.$grey-700}; - --color-metrics-plot-time-series-axis: #{colors.$grey-900}; - --color-metrics-plot-time-series-run-line: #{colors.$slate-200}; - --color-metrics-plot-time-series-run-line-hovered: #{colors.$white-0}; - --color-metrics-plot-time-series-dotted-line: #{colors.$grey-500}; } .kedro { diff --git a/src/components/experiment-warning/experiment-warning.js b/src/components/experiment-warning/experiment-warning.js deleted file mode 100644 index 603b345853..0000000000 --- a/src/components/experiment-warning/experiment-warning.js +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react'; - -import './experiment-warning.scss'; - -const ExperimentWarning = ({ title, subTitle }) => ( -
{subTitle}
-