scaffolder: move TemplateEditorDryRunResults to subdir
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
+4
-4
@@ -36,19 +36,19 @@ import React, {
|
||||
useState,
|
||||
} from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { useDryRun } from './DryRunContext';
|
||||
import { useDryRun } from '../DryRunContext';
|
||||
import DeleteIcon from '@material-ui/icons/Delete';
|
||||
import CheckIcon from '@material-ui/icons/Check';
|
||||
import CancelIcon from '@material-ui/icons/Cancel';
|
||||
import ExpandMoreIcon from '@material-ui/icons/ExpandLess';
|
||||
import { FileBrowser } from './FileBrowser';
|
||||
import { FileBrowser } from '../FileBrowser';
|
||||
import CodeMirror from '@uiw/react-codemirror';
|
||||
import { yaml as yamlSupport } from '@codemirror/legacy-modes/mode/yaml';
|
||||
import { StreamLanguage } from '@codemirror/language';
|
||||
import { LogViewer } from '@backstage/core-components';
|
||||
import { usePrevious } from '@react-hookz/web';
|
||||
import { TaskStatusStepper } from '../../TaskPage/TaskPage';
|
||||
import { TaskPageLinks } from '../../TaskPage/TaskPageLinks';
|
||||
import { TaskStatusStepper } from '../../../TaskPage/TaskPage';
|
||||
import { TaskPageLinks } from '../../../TaskPage/TaskPageLinks';
|
||||
import ListItemIcon from '@material-ui/core/ListItemIcon';
|
||||
import { BackstageTheme } from '@backstage/theme';
|
||||
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright 2022 The Backstage Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export { TemplateEditorDryRunResults } from './TemplateEditorDryRunResults';
|
||||
+1
-1
@@ -50,7 +50,7 @@ import {
|
||||
useDirectoryEditor,
|
||||
} from './DirectoryEditorContext';
|
||||
import { DryRunProvider, useDryRun } from './DryRunContext';
|
||||
import { TemplateEditorDryRunResults } from './TemplateEditorDryRunResults';
|
||||
import { TemplateEditorDryRunResults } from './DryRunResults';
|
||||
|
||||
const useStyles = makeStyles(theme => ({
|
||||
// Reset and fix sizing to make sure scrolling behaves correctly
|
||||
|
||||
Reference in New Issue
Block a user