fix pointer = cursor

This commit is contained in:
Eduard Heimbuch
2019-08-12 14:24:08 +02:00
parent 900e52ad0e
commit a2bff1fc54

View File

@@ -1,8 +1,8 @@
//@flow
import React from "react";
import injectSheet from "react-jss";
import type { Plugin } from "@scm-manager/ui-types";
import { CardColumn } from "@scm-manager/ui-components";
import type {Plugin} from "@scm-manager/ui-types";
import {CardColumn} from "@scm-manager/ui-components";
import PluginAvatar from "./PluginAvatar";
type Props = {
@@ -14,7 +14,7 @@ type Props = {
const styles = {
link: {
pointerEvents: "all"
pointerEvents: "cursor"
}
};