File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/ApplicationGroup Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ export const handleSourceNotConfigured = (
164
164
export const envListOptions = (
165
165
inputValue : string ,
166
166
signal : AbortSignal ,
167
- recentlyVisitedDevtronApps : BaseRecentlyVisitedEntitiesTypes [ ] ,
167
+ recentlyVisitedResources : BaseRecentlyVisitedEntitiesTypes [ ] ,
168
168
) : Promise < RecentlyVisitedGroupedOptionsType [ ] > =>
169
169
new Promise ( ( resolve ) => {
170
170
if ( timeoutId ) {
@@ -173,11 +173,11 @@ export const envListOptions = (
173
173
timeoutId = setTimeout ( ( ) => {
174
174
if ( inputValue . length < 3 ) {
175
175
resolve (
176
- recentlyVisitedDevtronApps ?. length
176
+ recentlyVisitedResources ?. length
177
177
? [
178
178
{
179
179
label : 'Recently Visited' ,
180
- options : recentlyVisitedDevtronApps . map ( ( env : BaseRecentlyVisitedEntitiesTypes ) => ( {
180
+ options : recentlyVisitedResources . map ( ( env : BaseRecentlyVisitedEntitiesTypes ) => ( {
181
181
label : env . name ,
182
182
value : env . id ,
183
183
isRecentlyVisited : true ,
You can’t perform that action at this time.
0 commit comments