diff --git a/packages/concordia-app/src/assets/css/index.css b/packages/concordia-app/src/assets/css/index.css index 2ecb4f9..cd7fb04 100644 --- a/packages/concordia-app/src/assets/css/index.css +++ b/packages/concordia-app/src/assets/css/index.css @@ -58,3 +58,12 @@ div { color: var(--secondary-color-highlighted) !important; box-shadow: 0 0 0 1px var(--secondary-color-highlighted) inset !important; } + +.unselectable { + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} diff --git a/packages/concordia-app/src/components/PostList/PostVoting/index.jsx b/packages/concordia-app/src/components/PostList/PostVoting/index.jsx index 6298903..ea3cb0f 100644 --- a/packages/concordia-app/src/components/PostList/PostVoting/index.jsx +++ b/packages/concordia-app/src/components/PostList/PostVoting/index.jsx @@ -3,12 +3,11 @@ import React, { } from 'react'; import { Button } from 'semantic-ui-react'; import PropTypes from 'prop-types'; - -import './styles.css'; import { useSelector } from 'react-redux'; import { POST_VOTING_CONTRACT } from '../../../constants/contracts/ContractNames'; import { drizzle } from '../../../redux/store'; import { TRANSACTION_ERROR, TRANSACTION_SUCCESS } from '../../../constants/TransactionStatus'; +import './styles.css'; const CHOICE_DEFAULT = '0'; const CHOICE_UP = '1'; @@ -63,7 +62,7 @@ const PostVoting = (props) => { && postId !== null && userAccount !== null) { setGetVoteCallHash(getVoteChainData(postId, userAccount)); } - }, [drizzleInitializationFailed, drizzleInitialized, ownVote, postId, totalVoteCount, userAccount]); + }, [drizzleInitializationFailed, drizzleInitialized, ownVote, postId, userAccount]); useEffect(() => { if (getVoteCallHash && getVoteResults && getVoteResults[getVoteCallHash]) { @@ -107,7 +106,7 @@ const PostVoting = (props) => { disabled={disableVoting} onClick={() => vote(CHOICE_DOWN)} /> - +    {totalVoteCount || 0}