mirror of https://github.com/zulip/zulip.git
stream_sidebar_row: Remove title for channel name.
This commit is contained in:
parent
f29f1299aa
commit
d8a4ca38ab
|
@ -6,7 +6,8 @@ import * as common from "./lib/common";
|
|||
|
||||
async function navigate_using_left_sidebar(page: Page, stream_name: string): Promise<void> {
|
||||
console.log("Visiting #" + stream_name);
|
||||
await page.click(`.stream-name[title="${stream_name}"]`);
|
||||
const stream_id = await page.evaluate(() => zulip_test.get_sub("Verona")!.stream_id);
|
||||
await page.click(`.narrow-filter[data-stream-id="${stream_id}"] .stream-name`);
|
||||
await page.waitForSelector(`#message_feed_container`, {visible: true});
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
{{> stream_privacy }}
|
||||
</span>
|
||||
|
||||
<a href="{{url}}" title="{{name}}" class="stream-name">{{name}}</a>
|
||||
<a href="{{url}}" class="stream-name">{{name}}</a>
|
||||
|
||||
<div class="left-sidebar-controls">
|
||||
{{#if can_post_messages}}
|
||||
|
|
Loading…
Reference in New Issue