|  | @@ -72,9 +72,9 @@ class TableRiwayat extends Component {
 | 
	
		
			
				|  |  |  				rows.push({
 | 
	
		
			
				|  |  |  					deskripsi: e.aktivitas,
 | 
	
		
			
				|  |  |  					complete: Math.min(100, Math.round(Math.random() * 110)),
 | 
	
		
			
				|  |  | -					ipv4: e.ipv4,
 | 
	
		
			
				|  |  | +					ipv4: e.ipv4 || "-",
 | 
	
		
			
				|  |  |  					menu: e.menu || "-",
 | 
	
		
			
				|  |  | -					username: e.user.nama,
 | 
	
		
			
				|  |  | +					username: e.user?.nama || "-",
 | 
	
		
			
				|  |  |  					timelapse: moment(e.createdAt).toLocaleString(),
 | 
	
		
			
				|  |  |  					completeDate: this.getRandomDate(new Date(), new Date(2021, 0, 1)),
 | 
	
		
			
				|  |  |  				});
 | 
	
	
		
			
				|  | @@ -103,16 +103,7 @@ class TableRiwayat extends Component {
 | 
	
		
			
				|  |  |  	render() {
 | 
	
		
			
				|  |  |  		return (
 | 
	
		
			
				|  |  |  			<ContentWrapper>
 | 
	
		
			
				|  |  | -				<Container fluid>
 | 
	
		
			
				|  |  | -					{this.state.dataGridReady && (
 | 
	
		
			
				|  |  | -						<ReactDataGrid
 | 
	
		
			
				|  |  | -							onGridSort={this.handleGridSort}
 | 
	
		
			
				|  |  | -							columns={this._columns}
 | 
	
		
			
				|  |  | -							rowGetter={this.rowGetter}
 | 
	
		
			
				|  |  | -							rowsCount={this.state.rows.length}
 | 
	
		
			
				|  |  | -						/>
 | 
	
		
			
				|  |  | -					)}
 | 
	
		
			
				|  |  | -				</Container>
 | 
	
		
			
				|  |  | +				<Container fluid>{this.state.dataGridReady && <ReactDataGrid onGridSort={this.handleGridSort} columns={this._columns} rowGetter={this.rowGetter} rowsCount={this.state.rows.length} />}</Container>
 | 
	
		
			
				|  |  |  				<div align="center">
 | 
	
		
			
				|  |  |  					<span>Riwayat Pengguna</span>
 | 
	
		
			
				|  |  |  				</div>
 |