mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
bring back ads edit (#22472)
This commit is contained in:
@@ -727,6 +727,12 @@ abstract class AbstractExtensionGalleryService implements IExtensionGalleryServi
|
|||||||
let query = new Query()
|
let query = new Query()
|
||||||
.withPage(1, pageSize);
|
.withPage(1, pageSize);
|
||||||
|
|
||||||
|
// {{SQL CARBON EDIT}} exclude extensions matching excludeFlags options
|
||||||
|
if (options.excludeFlags) {
|
||||||
|
query = query.withFilter(FilterType.ExcludeWithFlags, options.excludeFlags);
|
||||||
|
}
|
||||||
|
// {{SQL CARBON EDIT}}} - END
|
||||||
|
|
||||||
if (text) {
|
if (text) {
|
||||||
// Use category filter instead of "category:themes"
|
// Use category filter instead of "category:themes"
|
||||||
text = text.replace(/\bcategory:("([^"]*)"|([^"]\S*))(\s+|\b|$)/g, (_, quotedCategory, category) => {
|
text = text.replace(/\bcategory:("([^"]*)"|([^"]\S*))(\s+|\b|$)/g, (_, quotedCategory, category) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user