1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

chore(deps): upgrade build-tools [EE-5117] (#8577)

This commit is contained in:
Chaim Lev-Ari 2023-05-16 12:22:50 +07:00 committed by GitHub
parent 5f3c0ff835
commit 077046030d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 2106 additions and 1598 deletions

View file

@ -9,7 +9,7 @@ const categories = [
'portainer',
'edge',
] as const;
type Category = typeof categories[number];
type Category = (typeof categories)[number];
enum DimensionConfig {
PortainerVersion = 1,

View file

@ -92,7 +92,7 @@ export function ServiceViewModel(data, runningTasks, allTasks) {
this.VirtualIPs = data.Endpoint ? data.Endpoint.VirtualIPs : [];
if (data.Spec.UpdateConfig) {
this.UpdateParallelism = typeof data.Spec.UpdateConfig.Parallelism !== undefined ? data.Spec.UpdateConfig.Parallelism || 0 : 1;
this.UpdateParallelism = typeof data.Spec.UpdateConfig.Parallelism !== 'undefined' ? data.Spec.UpdateConfig.Parallelism || 0 : 1;
this.UpdateDelay = data.Spec.UpdateConfig.Delay || 0;
this.UpdateFailureAction = data.Spec.UpdateConfig.FailureAction || 'pause';
this.UpdateOrder = data.Spec.UpdateConfig.Order || 'stop-first';

View file

@ -59,7 +59,6 @@ export const componentsModule = angular
r2a(InsightsBox, [
'header',
'content',
'setHtmlContent',
'insightCloseId',
'type',
'className',

View file

@ -10,7 +10,6 @@ import { insightStore } from './insights-store';
export type Props = {
header?: string;
content?: ReactNode;
setHtmlContent?: boolean;
insightCloseId?: string; // set if you want to be able to close the box and not show it again
type?: 'default' | 'slim';
className?: string;

View file

@ -40,8 +40,9 @@ export function DifferentTheme() {
{themes.map((theme) => (
<td
key={theme}
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// eslint-disable-next-line @typescript-eslint/ban-ts-comment,
// @ts-ignore
// eslint-disable-next-line react/no-unknown-property
theme={theme}
className="p-5"
style={{ background: 'var(--bg-body-color)' }}

View file

@ -47,11 +47,7 @@ export function DockerfileDetails({ image }: Props) {
<DetailsTable.Row label="VOLUME">
<div className="flex flex-wrap gap-1">
{image.Volumes.map((volume, index) => (
<span
key={index}
className="label label-default space-right"
ng-repeat="volume in image.Volumes"
>
<span key={index} className="label label-default space-right">
{volume}
</span>
))}

View file

@ -31,7 +31,7 @@ export function EnvironmentInfo() {
{environmentData.Name}
</td>
</tr>
<tr ng-if="ctrl.showEnvUrl">
<tr>
<td className="!border-t !pl-0">URL</td>
<td className="!border-t" data-cy="dashboard-environmenturl">
{stripProtocol(environmentData.URL) || '-'}

View file

@ -132,7 +132,7 @@ export function ConsoleView() {
value={command}
onChange={(e) => setCommand(e.target.value)}
id="consoleCommand"
auto-focus="true"
autoFocus
/>
</div>
</div>

View file

@ -154,7 +154,7 @@ function useParamEnvironmentTypes(): EnvironmentOptionValue[] {
}
function useStepper(
steps: typeof environmentTypes[number][],
steps: (typeof environmentTypes)[number][],
onFinish: () => void
) {
const [currentStepIndex, setCurrentStepIndex] = useState(0);