Skip to content
Snippets Groups Projects
Unverified Commit 90432144 authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Fix 23421 (#23802)

parent c952c87c
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ function DatasetEditor(props) {
const focusFirstField = useCallback(() => {
const [firstField] = fields;
setFocusedFieldRef(firstField.field_ref);
setFocusedFieldRef(firstField?.field_ref);
}, [fields, setFocusedFieldRef]);
useEffect(() => {
......
......@@ -15,7 +15,7 @@ const questionDetails = {
dataset: true,
};
describe.skip("issue 23421", () => {
describe("issue 23421", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment