This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch flask_config in repository https://gitbox.apache.org/repos/asf/superset.git
commit 6e469eb922b599662e5b1e3f3c0c722aae2af9c5 Author: Maxime Beauchemin <[email protected]> AuthorDate: Fri Jul 18 03:07:25 2025 -0700 style: remove quotes from search message to avoid ESLint warnings --- docs/src/components/ConfigurationTable.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/src/components/ConfigurationTable.tsx b/docs/src/components/ConfigurationTable.tsx index 938daf82b0..a8f6095409 100644 --- a/docs/src/components/ConfigurationTable.tsx +++ b/docs/src/components/ConfigurationTable.tsx @@ -406,10 +406,7 @@ const ConfigurationTable: React.FC<ConfigurationTableProps> = ({ <div style={{ textAlign: 'center', padding: '20px', color: '#666' }}> {searchTerm ? ( <div> - <p> - No configuration settings found matching "{searchTerm} - ". - </p> + <p>No configuration settings found matching {searchTerm}.</p> <p style={{ fontSize: '14px', marginTop: '10px' }}> Try adjusting your search term or{' '} <button
