Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WRQ-19494: css-loader v7 migration #90

Open
wants to merge 1 commit into
base: feature/enact_v5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion performanceMetrics/src/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {useCallback, useEffect, useState} from 'react';

import Chart from '../views/Chart';

import css from './App.module.less';
import * as css from './App.module.less';

const listOfSandstoneComponent = [
'Overall',
Expand Down
2 changes: 1 addition & 1 deletion performanceMetrics/src/views/Chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Heading} from '@enact/sandstone/Heading';
import PropTypes from 'prop-types';
import {CartesianGrid, Label, Line, LineChart, ReferenceLine, Tooltip, XAxis, YAxis} from 'recharts';

import css from './Chart.module.less';
import * as css from './Chart.module.less';

const CustomTooltip = ({active, payload}) => {
if (active && payload && payload.length) {
Expand Down
2 changes: 1 addition & 1 deletion src/App/Agate-App.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import TooltipDecorator from '../views/agate/TooltipDecorator';
import VirtualList from '../views/agate/VirtualList';
import WindDirectionControl from '../views/agate/WindDirectionControl';

import css from './App.less';
import * as css from './App.less';

import {BrowserRouter as Router, Route, Routes} from 'react-router-dom';

Expand Down
2 changes: 1 addition & 1 deletion src/App/Sandstone-App.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import VideoPlayer from '../views/sandstone/VideoPlayer';
import VirtualList from '../views/sandstone/VirtualList';
import WizardPanels from '../views/sandstone/WizardPanels';

import css from './App.less';
import * as css from './App.less';

import {BrowserRouter as Router, Route, Routes} from 'react-router-dom';

Expand Down