1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: lint:fix

Signed-off-by: Gabriel <gaccettola@mirantis.com>
This commit is contained in:
Gabriel 2023-04-20 12:39:30 +02:00 committed by Sebastian Malton
parent 5128730fd2
commit 76c11aa697
6 changed files with 32 additions and 15 deletions

View File

@ -6,7 +6,7 @@ import { getInjectable } from "@ogre-tools/injectable";
import navigateToPortForwardsInjectable from "../../common/front-end-routing/routes/cluster/network/port-forwards/navigate-to-port-forwards.injectable"; import navigateToPortForwardsInjectable from "../../common/front-end-routing/routes/cluster/network/port-forwards/navigate-to-port-forwards.injectable";
import showErrorNotificationInjectable from "../components/notifications/show-error-notification.injectable"; import showErrorNotificationInjectable from "../components/notifications/show-error-notification.injectable";
import React from "react"; import React from "react";
import { Button } from from "@k8slens/button"; import { Button } from "@k8slens/button";
const notifyErrorPortForwardingInjectable = getInjectable({ const notifyErrorPortForwardingInjectable = getInjectable({
id: "notify-error-port-forwarding", id: "notify-error-port-forwarding",

View File

@ -3,4 +3,4 @@
* Licensed under MIT License. See LICENSE in root directory for more information. * Licensed under MIT License. See LICENSE in root directory for more information.
*/ */
export * from "./src/button"; export * from "./src/button";

View File

@ -27,14 +27,35 @@ export interface ButtonProps extends ButtonHTMLAttributes<any> {
export const Button = withTooltip((props: ButtonProps) => { export const Button = withTooltip((props: ButtonProps) => {
const { const {
waiting, label, primary, accent, plain, hidden, active, big, waiting,
round, outlined, light, children, ...btnProps label,
primary,
accent,
plain,
hidden,
active,
big,
round,
outlined,
light,
children,
...btnProps
} = props; } = props;
if (hidden) return null; if (hidden) {
return null;
}
btnProps.className = cssNames("Button", btnProps.className, { btnProps.className = cssNames("Button", btnProps.className, {
waiting, primary, accent, plain, active, big, round, outlined, light, waiting,
primary,
accent,
plain,
active,
big,
round,
outlined,
light,
}); });
// render as link // render as link

View File

@ -3,12 +3,10 @@
* Licensed under MIT License. See LICENSE in root directory for more information. * Licensed under MIT License. See LICENSE in root directory for more information.
*/ */
const path = require('path'); const path = require("path");
module.exports = { module.exports = {
content: [ content: [path.join(__dirname, "src/**/*.tsx")],
path.join(__dirname, "src/**/*.tsx")
],
darkMode: "class", darkMode: "class",
theme: { theme: {
fontFamily: { fontFamily: {

View File

@ -1,2 +1,2 @@
export * from "./src/tooltip"; export * from "./src/tooltip";
export * from "./src/withTooltip"; export * from "./src/withTooltip";

View File

@ -3,12 +3,10 @@
* Licensed under MIT License. See LICENSE in root directory for more information. * Licensed under MIT License. See LICENSE in root directory for more information.
*/ */
const path = require('path'); const path = require("path");
module.exports = { module.exports = {
content: [ content: [path.join(__dirname, "src/**/*.tsx")],
path.join(__dirname, "src/**/*.tsx")
],
darkMode: "class", darkMode: "class",
theme: { theme: {
fontFamily: { fontFamily: {