diff --git a/wax-prosemirror-components/src/components/customtag/CustomTagBlockComponent.js b/wax-prosemirror-components/src/components/customtag/CustomTagBlockComponent.js
index b9a46388fe4005a088ccee6a2268e6477222b4a1..cd5c4919062ae48b59fd3f150757fe745420423b 100644
--- a/wax-prosemirror-components/src/components/customtag/CustomTagBlockComponent.js
+++ b/wax-prosemirror-components/src/components/customtag/CustomTagBlockComponent.js
@@ -52,7 +52,7 @@ const ActiveStyles = styled.div`
   background: ${th('colorPrimary')};
   color: #fff;
   cursor: pointer;
-  font-family: Fira Sans Condensed;
+  font-family: 'Fira Sans Condensed';
   font-size: 14px;
   height: 28px;
   padding: 2px;
@@ -64,17 +64,22 @@ const CustomTagBlockComponent = props => {
   const [inputValue, setInputValue] = useState('');
   const [tagName, setTagName] = useState('');
   const localTagList = JSON.parse(localStorage.getItem('tagBlockList'));
+
   const {
     app,
     view: { main },
     activeView,
     activeViewId,
   } = useContext(WaxContext);
+
   const { state, dispatch } = main;
+  const { $from } = state.selection;
 
+  const type = $from.parent.attrs.class ? $from.parent.attrs.class : '';
   const serviceConfig = app.config.get('config.CustomTagService');
   const [serviceList, setServiceList] = useState([]);
-  const isActive = item.active(activeView.state, activeViewId);
+  const isActive = item.active(activeView.state, activeViewId, type);
+  console.log(isActive);
 
   const onChangeTagName = e => {
     setTagName(e.target.value);
@@ -118,41 +123,34 @@ const CustomTagBlockComponent = props => {
     setServiceList(labels);
   }, [localTagList, serviceConfig]);
 
-  return useMemo(() => (
-    <Wrapper>
-      {isShowTag === true && (
-        <FlexDiv>
-          <Input
-            onChange={e => onChangeTagName(e)}
-            ref={ref}
-            type="text"
-            value={inputValue}
-          />
-          <Add onClick={onClickAdd}>Add</Add>
-        </FlexDiv>
-      )}
-
-      {serviceList !== null &&
-        serviceList.map((item, pos) => (
-          <ListStyle key={uuidv4()}>
-            {isActive && (
-              <ActiveStyles>
-                <FlexDiv onClick={e => onSelectTag(e, item)}>
-                  <Box />
-                  <StyledButton>{item}</StyledButton>
-                </FlexDiv>
-              </ActiveStyles>
-            )}
-            {!isActive && (
+  return useMemo(
+    () => (
+      <Wrapper>
+        {isShowTag && (
+          <FlexDiv>
+            <Input
+              onChange={e => onChangeTagName(e)}
+              ref={ref}
+              type="text"
+              value={inputValue}
+            />
+            <Add onClick={onClickAdd}>Add</Add>
+          </FlexDiv>
+        )}
+
+        {serviceList !== null &&
+          serviceList.map((item, pos) => (
+            <ListStyle key={uuidv4()}>
               <FlexDiv onClick={e => onSelectTag(e, item)}>
                 <Box />
                 <StyledButton>{item}</StyledButton>
               </FlexDiv>
-            )}
-          </ListStyle>
-        ))}
-    </Wrapper>
-  ));
+            </ListStyle>
+          ))}
+      </Wrapper>
+    ),
+    [],
+  );
 };
 
 export default CustomTagBlockComponent;
diff --git a/wax-prosemirror-services/src/CustomTagService/CustomTagBlockService/CustomTagBlockTool.js b/wax-prosemirror-services/src/CustomTagService/CustomTagBlockService/CustomTagBlockTool.js
index 7af3d174db61561c5f3b757e6a2f775434b53b75..408d90b363136fc556189e0850a946782e138bfe 100644
--- a/wax-prosemirror-services/src/CustomTagService/CustomTagBlockService/CustomTagBlockTool.js
+++ b/wax-prosemirror-services/src/CustomTagService/CustomTagBlockService/CustomTagBlockTool.js
@@ -14,10 +14,10 @@ class CustomTagBlockTool extends Tools {
   }
 
   get active() {
-    return state => {
+    return (state, activeViewId, type) => {
       return Commands.customTagBlockActive(
         state.config.schema.nodes.customTagBlock,
-        { class: 'custom-tag-label-3' },
+        { class: type },
       )(state);
     };
   }
diff --git a/wax-prosemirror-utilities/src/commands/Commands.js b/wax-prosemirror-utilities/src/commands/Commands.js
index c106b34f5007a3724c6c6ab3450d8370bf993b9b..321af0b9743e93e7a2b62b339599b6213dce3542 100644
--- a/wax-prosemirror-utilities/src/commands/Commands.js
+++ b/wax-prosemirror-utilities/src/commands/Commands.js
@@ -57,8 +57,12 @@ const blockActive = (nodeType, attrs = {}) => {
 
 const customTagBlockActive = (type, attrs = {}) => state => {
   const { $from } = state.selection;
-  console.log('type', type);
-  console.log($from);
+  if (
+    $from.parent.attrs.class === attrs.class &&
+    $from.parent.type.name === 'custom-tag-block'
+  )
+    return true;
+  return false;
 };
 
 // const blockActive = (type, attrs = {}) => state => {