ywana-core8 0.0.930 → 0.0.932

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.930",
3
+ "version": "0.0.932",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -163,7 +163,7 @@ export const TaskMonitor = (props) => {
163
163
  const { title = "Task Monitor", filters = {}, editors, frequency = 5000 } = props
164
164
  const context = useContext(TaskContext)
165
165
  const [tasks = [], setTasks] = useState([])
166
- cont [minimized, setMinimized] = useState(false)
166
+ const [minimized, setMinimized] = useState(false)
167
167
 
168
168
  useEffect(() => {
169
169
  refresh()
@@ -225,7 +225,7 @@ export const TaskMonitor = (props) => {
225
225
  setMinimized(!minimized)
226
226
  }
227
227
 
228
- const toggleIcon = () => minimized ? "maximize" : "minimize" //
228
+ const toggleIcon = minimized ? "maximize" : "minimize" //
229
229
  const viewStyle = minimized ? "minimized" : "" //
230
230
 
231
231
  return (