Skip to content

Commit

Permalink
change tab to use vis MS base name
Browse files Browse the repository at this point in the history
  • Loading branch information
schiebel committed Feb 1, 2024
1 parent 5803d87 commit bf40c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion casagui/apps/_interactiveclean.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import shutil
import websockets
from uuid import uuid4
from pathlib import Path
from html import escape as html_escape
from contextlib import asynccontextmanager
from bokeh.models import Button, TextInput, Div, LinearAxis, CustomJS, Spacer, Span, HoverTool, DataRange1d, Step, InlineStyleSheet
Expand Down Expand Up @@ -218,7 +219,7 @@ def __init__( self, vis, imagename, usemask='user', mask='', initial_mask_pixel=
### Create application context (which includes a temporary directory).
### This sets the title of the plot.
###
self._app_state = AppContext( 'Interactive Clean' )
self._app_state = AppContext( Path(vis).stem )

###
### Whether or not the Interactive Clean session is running remotely
Expand Down

0 comments on commit bf40c0d

Please sign in to comment.