From dee0b61bc287da209344b54c29d361f3d90271cc Mon Sep 17 00:00:00 2001 From: nixocio Date: Fri, 7 May 2021 11:13:07 -0400 Subject: [PATCH] Fix prop typo Fix prop typo. See: https://www.patternfly.org/2020.04/documentation/react/components/select#props --- awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx index 9e1ff335c7..3ba759c309 100644 --- a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx +++ b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx @@ -56,7 +56,7 @@ function PlaybookSelect({ onToggle={setIsOpen} placeholderText={t`Select a playbook`} typeAheadAriaLabel={t`Select a playbook`} - isCreateable={false} + isCreatable={false} onSelect={(event, value) => { setIsOpen(false); onChange(value);