ywana-core8 0.0.753 → 0.0.754
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +1 -1
package/package.json
CHANGED
package/src/html/table.js
CHANGED
@@ -137,7 +137,7 @@ const DataTableRow = (props) => {
|
|
137
137
|
const { index, row, columns = [], onSelect, editable, expanded = false } = props
|
138
138
|
const { selected = false, className } = row
|
139
139
|
const [isInfoOpen, toggleInfo] = useState(expanded)
|
140
|
-
const infoIcon = isInfoOpen ? '
|
140
|
+
const infoIcon = isInfoOpen ? 'expand_less' : 'expand_more'
|
141
141
|
let style = isInfoOpen ? "expanded" : ""
|
142
142
|
if (selected) style += " selected"
|
143
143
|
return (
|