|
@@ -12,9 +12,6 @@ import {
|
|
|
import { CREATING_PAGE_VIRTUAL_ID } from '../constants/_inner';
|
|
import { CREATING_PAGE_VIRTUAL_ID } from '../constants/_inner';
|
|
|
import type { TreeItemToolProps } from '../interfaces';
|
|
import type { TreeItemToolProps } from '../interfaces';
|
|
|
|
|
|
|
|
-import styles from './TreeNameInput.module.scss';
|
|
|
|
|
-
|
|
|
|
|
-const moduleClass = styles['tree-name-input'] ?? '';
|
|
|
|
|
|
|
|
|
|
type TreeNameInputProps = {
|
|
type TreeNameInputProps = {
|
|
|
/**
|
|
/**
|
|
@@ -58,7 +55,7 @@ const TreeNameInputSubstance: FC<TreeNameInputProps> = ({
|
|
|
const isInvalid = validationResult != null;
|
|
const isInvalid = validationResult != null;
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <div className={`${moduleClass} ${className ?? ''} flex-fill`}>
|
|
|
|
|
|
|
+ <div className={`${className ?? ''} flex-fill`}>
|
|
|
<input
|
|
<input
|
|
|
{...inputProps}
|
|
{...inputProps}
|
|
|
onChange={(e) => {
|
|
onChange={(e) => {
|