mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	dependencies: Upgrade JavaScript dependencies.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							f4235b258e
						
					
				
				
					commit
					ad7466a2bf
				
			@@ -95,7 +95,7 @@ export class MessageState {
 | 
			
		||||
        // wrong with our event loop.
 | 
			
		||||
 | 
			
		||||
        if (!this.received) {
 | 
			
		||||
            setTimeout(this.maybe_restart_event_loop.bind(this), 5000);
 | 
			
		||||
            setTimeout(() => this.maybe_restart_event_loop(), 5000);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -107,7 +107,7 @@ function populate_messages_sent_over_time(data) {
 | 
			
		||||
    // Helper functions
 | 
			
		||||
    function make_traces(dates, values, type, date_formatter) {
 | 
			
		||||
        const text = dates.map((date) => date_formatter(date));
 | 
			
		||||
        const common = {x: dates, type, hoverinfo: "none", text};
 | 
			
		||||
        const common = {x: dates, type, hoverinfo: "none", text, textposition: "none"};
 | 
			
		||||
        return {
 | 
			
		||||
            human: {
 | 
			
		||||
                // 5062a0
 | 
			
		||||
@@ -808,7 +808,7 @@ function populate_messages_read_over_time(data) {
 | 
			
		||||
    // Helper functions
 | 
			
		||||
    function make_traces(dates, values, type, date_formatter) {
 | 
			
		||||
        const text = dates.map((date) => date_formatter(date));
 | 
			
		||||
        const common = {x: dates, type, hoverinfo: "none", text};
 | 
			
		||||
        const common = {x: dates, type, hoverinfo: "none", text, textposition: "none"};
 | 
			
		||||
        return {
 | 
			
		||||
            everyone: {
 | 
			
		||||
                name: $t({defaultMessage: "Everyone"}),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user