code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/wallet/Transfer.js b/src/wallet/Transfer.js @@ -7,12 +7,13 @@ import { Form, Input, Radio, Modal } from 'antd';
import './Transfer.less';
import { closeTransfer } from './walletActions';
-import { getAuthenticatedUser } from '../reducers';
+import { getIsAuthenticated, getAuthenticatedUser } from '../r... | 9 |
diff --git a/.circleci/test.sh b/.circleci/test.sh @@ -29,13 +29,13 @@ case $1 in
jasmine)
npm run test-jasmine -- --skip-tags=gl,noCI,flaky || EXIT_STATE=$?
+ npm run test-bundle || EXIT_STATE=$?
exit $EXIT_STATE
;;
jasmine2)
retry npm run test-jasmine -- --tags=gl --skip-tags=noCI,flaky
retry npm run test-jasmine -- ... | 5 |
diff --git a/templates/lively-debugger.js b/templates/lively-debugger.js @@ -31,6 +31,7 @@ export default class Debugger extends Morph {
return;
}
+ this.onTargetsInitialized;
this.initializeButtonBar();
this.initializeTargets();
this.initializeCodeEditor();
@@ -75,6 +76,9 @@ export default class Debugger extends Morph... | 12 |
diff --git a/src/traces/histogram/bin_functions.js b/src/traces/histogram/bin_functions.js @@ -47,8 +47,9 @@ module.exports = {
return v;
}
else if(size[n] > v) {
+ var delta = v - size[n];
size[n] = v;
- return v - size[n];
+ return delta;
}
}
return 0;
@@ -63,8 +64,9 @@ module.exports = {
return v;
}
else if(size[n] ... | 1 |
diff --git a/test/jasmine/tests/parcoords_test.js b/test/jasmine/tests/parcoords_test.js @@ -790,6 +790,51 @@ describe('parcoords Lifecycle methods', function() {
.then(done);
});
});
+
+ it('@gl line.color `Plotly.restyle` should work', function(done) {
+ function getAvgPixelByChannel() {
+ var canvas = d3.select('.gl... | 0 |
diff --git a/lib/assets/javascripts/new-dashboard/store/actions/external-visualizations.js b/lib/assets/javascripts/new-dashboard/store/actions/external-visualizations.js @@ -107,6 +107,10 @@ export function whenFetchVisualizations (context) {
const filter = {};
visData = customStorageToVisualization(data, filter);
res... | 9 |
diff --git a/tools/continuous-delivery/src/runPublisher.ts b/tools/continuous-delivery/src/runPublisher.ts -import { execSync } from 'child_process';
import { VersionPatch } from './makeVersionPatches';
export const runPublisher = async (versionPatches: VersionPatch[]) => {
- const packageArg = versionPatches
+ const b... | 9 |
diff --git a/src-rx/src/App.js b/src-rx/src/App.js @@ -60,7 +60,8 @@ import Brightness7Icon from '@material-ui/icons/Brightness7';
// @material-ui/lab
import Alert from '@material-ui/lab/Alert';
-import AppDrawer from './components/AppDrawer';
+import Drawer from './components/Drawer';
+import DrawerItem from './compon... | 5 |
diff --git a/src/Appwrite/Auth/Phone/Vonage.php b/src/Appwrite/Auth/Phone/Vonage.php @@ -5,7 +5,7 @@ namespace Appwrite\Auth\Phone;
use Appwrite\Auth\Phone;
// Reference Material
-// https://dashboard.nexmo.com/getting-started/sms
+// https://developer.vonage.com/api/sms
class Vonage extends Phone
{
@@ -23,7 +23,6 @@ c... | 12 |
diff --git a/doc/server_config.md b/doc/server_config.md @@ -70,6 +70,5 @@ Duplicate config.ini in server/preprocessing/conf/ and rename it to config_local
## Logging configuration
-Please add following environment variables to your Renviron (in local mode) or Renviron.site (if called on a server):
+In the default sett... | 3 |
diff --git a/src/containers/LeftPanel/Thunk/Thunk.jsx b/src/containers/LeftPanel/Thunk/Thunk.jsx @@ -75,14 +75,14 @@ const Async = ({ async, index, dispatchToTestCase }) => {
<input type="text" name="asyncFunction" />
</div>
- <label htmlFor='queryVariant' className={styles.queryLabel}>
+ <label htmlFor='method' classN... | 3 |
diff --git a/packages/bpk-mixins/src/mixins/_typography.scss b/packages/bpk-mixins/src/mixins/_typography.scss @@ -75,8 +75,8 @@ $bpk-spacing-v2: true;
@mixin bpk-text--xs {
@include _bpk-text-factory(
- $bpk-text-xs-font-size,
- $bpk-text-xs-line-height,
+ $bpk-font-size-xs,
+ $bpk-line-height-xs,
$bpk-font-weight-boo... | 14 |
diff --git a/packages/cx/src/widgets/form/DateTimeField.js b/packages/cx/src/widgets/form/DateTimeField.js @@ -394,7 +394,6 @@ class DateTimeInput extends VDOM.Component {
switch (e.keyCode) {
case KeyCode.enter:
- e.stopPropagation();
this.onChange(e, "enter");
break;
| 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -41746,7 +41746,7 @@ var $$IMU_EXPORT$$;
if (result.status !== 200)
return options.cb(obj || null);
- var extra = {page: result.finalUrl};
+ var extra = {page: result.finalUrl.replace(/(:\/\/www\.gettyimages\.)[^/]+\//, "://www.gettyimages.com/")};
//var smallerur... | 7 |
diff --git a/plugins/addimage.js b/plugins/addimage.js * [4] <data>
*/
jsPDFAPI.extractInfoFromBase64DataURI = function(dataURI) {
- return /^data:([\w]+?\/([\w]+?));base64,(.+?)$/g.exec(dataURI);
+ return /^data:([\w]+?\/([\w]+?));base64,(.+)$/g.exec(dataURI);
};
/**
| 1 |
diff --git a/app/controllers/samples_controller.rb b/app/controllers/samples_controller.rb @@ -528,7 +528,7 @@ class SamplesController < ApplicationController
client_type = client == "web" ? client : "cli"
samples_to_upload.each_with_index do |sample, sample_idx|
- sample[:input_files_attributes].each_with_index do |_,... | 9 |
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -708,7 +708,7 @@ function createOptimisticChatReport(participantList) {
* @param {File} [file]
* @returns {Object}
*/
-function buildOptimisticReportAction(reportID, text, file) {
+function createOptimisticReportAction(reportID, text, file) {
// Fo... | 10 |
diff --git a/src/button.js b/src/button.js @@ -61,7 +61,7 @@ $.ButtonState = {
* @memberof OpenSeadragon
* @extends OpenSeadragon.EventSource
* @param {Object} options
- * @param {Element} [options.element=null] Element to use as the button. If not specified, an HTML <button> element is created.
+ * @param {Eleme... | 3 |
diff --git a/index.js b/index.js @@ -94,6 +94,20 @@ async function updateIssueMessage(messageMetaData, context) {
});
}
+function retrieveStoredMetadata(id) {
+ return new Promise((resolve, reject) => {
+ redisClient.get(id, (err, value) => {
+ if (err) {
+ reject(new Error(err));
+ } else if (!value) {
+ reject(new Er... | 7 |
diff --git a/token-metadata/0xA8e7AD77C60eE6f30BaC54E2E7c0617Bd7B5A03E/metadata.json b/token-metadata/0xA8e7AD77C60eE6f30BaC54E2E7c0617Bd7B5A03E/metadata.json "symbol": "zLOT",
"address": "0xA8e7AD77C60eE6f30BaC54E2E7c0617Bd7B5A03E",
"decimals": 18,
- "dharmaVerificationStatus": "UNVERIFIED"
+ "dharmaVerificationStatus... | 3 |
diff --git a/src/encoded/static/vis_defs/eCLIP_vis_def.json b/src/encoded/static/vis_defs/eCLIP_vis_def.json "maxHeightPixels": "64:18:8",
"windowingFunction": "mean+whiskers",
"output_type": [ "plus strand signal of unique reads" ]
- },
+ }
}
},
"other_groups": {
| 2 |
diff --git a/test/Terminal/Terminal.test.js b/test/Terminal/Terminal.test.js @@ -92,6 +92,40 @@ const terminalEmulationFailed = proxyquire('../../src/Services/Terminal/Terminal
// Tests
describe('#Terminal', function terminalTest() {
this.timeout(5000);
+ describe('Exit handlers', () => {
+ it('should not close session... | 0 |
diff --git a/src/components/Staking/StakingComparison.tsx b/src/components/Staking/StakingComparison.tsx import React from "react"
-import {
- Box,
- Flex,
- Heading,
- Icon,
- Text,
- useTheme,
- VStack,
-} from "@chakra-ui/react"
+import { Box, Flex, Heading, Icon, Text, useTheme } from "@chakra-ui/react"
import Link... | 4 |
diff --git a/lib/ProgressPlugin.js b/lib/ProgressPlugin.js @@ -83,7 +83,7 @@ class ProgressPlugin {
const states = new Array(compiler.compilers.length);
compiler.compilers.forEach((compiler, idx) => {
new ProgressPlugin((p, msg, ...args) => {
- states[idx] = args;
+ states[idx] = [p, msg, ...args];
handler(
states
.map... | 1 |
diff --git a/src/components/molecules/page-header/description.js b/src/components/molecules/page-header/description.js @@ -4,6 +4,7 @@ import styled from 'styled-components'
import { colors } from '../../../tokens'
import Paragraph from '../../atoms/paragraph'
+import Link from '../../atoms/link'
const ArrowMore = styl... | 14 |
diff --git a/runtime.js b/runtime.js @@ -319,6 +319,11 @@ const _loadScript = async file => {
});
return URL.createObjectURL(b);
})();
+ app.files = new Proxy({}, {
+ get(target, p) {
+ return new URL(p, srcUrl).href;
+ },
+ });
const cachedUrls = [];
const _getUrl = u => {
| 0 |
diff --git a/token-metadata/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/metadata.json b/token-metadata/0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0/metadata.json "symbol": "HEX2T",
"address": "0xEd1199093b1aBd07a368Dd1C0Cdc77D8517BA2A0",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/src/pages/home/sidebar/SidebarLinks.js b/src/pages/home/sidebar/SidebarLinks.js @@ -3,7 +3,6 @@ import {View, TouchableOpacity} from 'react-native';
import _ from 'underscore';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
-import memoizeOne from 'memoize-one';
import styl... | 4 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,18 @@ To see all merged commits on the master branch that will be part of the next plo
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.58.3] -- 2020-12-17
+
+### Fixed
+ - Fix `autorange` for inside tick label positions [#5332]
+ - Fix "nonnegative"... | 3 |
diff --git a/package.json b/package.json {
"name": "julia-client",
"main": "./lib/julia-client",
- "version": "0.6.5",
+ "version": "0.6.6",
"description": "Julia Evaluation",
"keywords": [],
"repository": "https://github.com/JunoLab/atom-julia-client",
| 6 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,17 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.42.1] -- 2018-10-31
+
+### Fixed
+- Fix IE regression introduced in 1.42.0 [#3187]
+- Fix `parcats` text-shadowing on dark `plot_bgco... | 3 |
diff --git a/app/shared/components/Producers.js b/app/shared/components/Producers.js @@ -188,8 +188,10 @@ class Producers extends Component<Props> {
connection.chainId !== '73647cde120091e0a4b85bced2f3cfdb3041e266cbbe95cee59b73235a1b3b6f';
const blockExplorers = allBlockExplorers[connection.chainKey];
-
- if (settings.... | 14 |
diff --git a/articles/server-apis/wcf-service/authenticate.md b/articles/server-apis/wcf-service/authenticate.md @@ -3,12 +3,15 @@ title: Authenticate
description: This tutorial will show you how to use the Auth0 WCF SDK to add authentication and authorization to your API.
---
-::: panel-info System Requirements
-This ... | 0 |
diff --git a/DeletedUsersHelper.user.js b/DeletedUsersHelper.user.js // @description Additional capability and improvements to display/handle deleted users
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 1.7.5
+// @version 1.7.6
//
// @include https://*stackoverflow.com/*
// ... | 2 |
diff --git a/src/core/Core.test.js b/src/core/Core.test.js @@ -232,6 +232,7 @@ describe('src/Core', () => {
capabilities: { resumableUploads: false },
files: {},
currentUploads: {},
+ error: null,
foo: 'bar',
info: { isHidden: true, message: '', type: 'info' },
meta: {},
@@ -271,6 +272,7 @@ describe('src/Core', () => {... | 3 |
diff --git a/src/og/entity/GeoObjectHandler.js b/src/og/entity/GeoObjectHandler.js @@ -75,9 +75,7 @@ class GeoObjectHandler {
this._changedBuffers = new Array(this._buffersUpdateCallbacks.length);
this._instancedTags = new Map();
- this._instancedTags.set("none", {
- index: 0
- });
+
}
getObjectByIndex(index) {
@@ -237... | 2 |
diff --git a/docs/components/TimeBasedLineChartDocs.js b/docs/components/TimeBasedLineChartDocs.js @@ -57,13 +57,9 @@ const TimeBasedLineChartDocs = React.createClass({
breakPointDate={moment().startOf('month').unix()}
breakPointLabel={'This Month'}
data={lineChartData}
- height={400}
- margin={{ top: 30, right: 0, bot... | 4 |
diff --git a/app/classifier/tasks/drawing-task-details-editor.cjsx b/app/classifier/tasks/drawing-task-details-editor.cjsx @@ -119,7 +119,7 @@ module.exports = createReactClass
when 'single'
TaskChoice = require('./single').default
when 'text'
- TaskChoice = require './text'
+ TaskChoice = require('./text').default
whe... | 1 |
diff --git a/src/styles/breakpoints.spec.js b/src/styles/breakpoints.spec.js @@ -34,5 +34,9 @@ describe('createBreakpoints', () => {
assert.strictEqual(breakpoints.only('md'),
'@media (min-width:960px) and (max-width:1279px)');
});
+
+ it('on xl should call up', () => {
+ assert.strictEqual(breakpoints.only('xl'), '@me... | 0 |
diff --git a/src/components/editgrid/EditGrid.js b/src/components/editgrid/EditGrid.js @@ -413,7 +413,7 @@ export default class EditGridComponent extends NestedComponent {
this.setCustomValidity('Please correct rows before proceeding.', dirty);
return false;
}
- else if (!rowsClosed) {
+ else if (!rowsClosed && !this.c... | 7 |
diff --git a/src/containers/tags/withTag.js b/src/containers/tags/withTag.js import React from "react";
import PropTypes from "prop-types";
import { Query } from "react-apollo";
-import { computed, observable, toJS } from "mobx";
-import { observer } from "mobx-react";
import tagQuery from "./tag.gql";
/**
@@ -12,7 +10... | 2 |
diff --git a/pages/commune/[codeCommune].js b/pages/commune/[codeCommune].js @@ -15,6 +15,8 @@ import Historique from '@/components/commune/historique'
import BalQuality from '@/components/commune/bal-quality'
function Commune({communeInfos, mairieInfos, revisions, codeCommune, currentRevision, typeCompositionAdresses}... | 7 |
diff --git a/server/src/processes/reactor.js b/server/src/processes/reactor.js @@ -37,6 +37,7 @@ const triggerHeatWarning = sys => {
if (!heatThrottles[sys.id]) {
heatThrottles[sys.id] = throttle(sys => {
const simulator = App.simulators.find(s => s.id === sys.simulatorId);
+ if (!simulator) return;
const stations = si... | 1 |
diff --git a/pic.js b/pic.js @@ -12,6 +12,8 @@ import * as WebMWriter from 'webm-writer';
// const defaultWidth = 512;
// const defaultHeight = 512;
const FPS = 60;
+// const videoQuality = 0.99999;
+const videoQuality = 0.95;
const localVector = new THREE.Vector3();
const localVector2 = new THREE.Vector3();
@@ -197,7 ... | 0 |
diff --git a/main.ts b/main.ts @@ -28,6 +28,8 @@ export {
PluginModule, BrowserSettings, WendigoSelector
} from './lib/types';
-export { default as DomElement } from './lib/models/dom_element'; // TODO: export only interface
+import { default as DomElementClass } from './lib/models/dom_element';
-export { default as Br... | 7 |
diff --git a/src/components/molecules/CardDefault/index.js b/src/components/molecules/CardDefault/index.js -import { Icon, Text, Link } from 'components/atoms'
+import { Icon, Text, Link, Image } from 'components/atoms'
import { withPrefix } from 'gatsby'
import PropTypes from 'prop-types'
import React from 'react'
@@ ... | 14 |
diff --git a/app/modules/handler/actions/uri.js b/app/modules/handler/actions/uri.js @@ -164,8 +164,10 @@ export function setURI(uri) {
inflateRaw: (data) => new Uint8Array(zlib.inflateRawSync(Buffer.from(data))),
}
};
+ // Catch old signing requests during v1 -> v2 spec upgrade
+ const modified = uri.replace('eosio:',... | 11 |
diff --git a/src/css/page.scss b/src/css/page.scss @@ -35,10 +35,6 @@ html, body {
border-top: 30px solid black;
position: relative;
top: -30px;
- //padding-left: $sidebarWidth + 20px;
- @media (max-width: 700px) {
- padding-left: $sidebarWidthSmall + 20px;
- }
}
| 1 |
diff --git a/package.json b/package.json "queue": "*",
"debug": "^4.1.1",
"serialport": "^7.1.4",
- "zigbee-shepherd": "https://github.com/kirovilya/zigbee-shepherd/tarball/master",
+ "zigbee-shepherd": "https://github.com/kirovilya/zigbee-shepherd/tarball/3a74db36224efb1eceeea886903c40a68f456c7b",
"zigbee-shepherd-con... | 3 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/contextMenu.js b/packages/node_modules/@node-red/editor-client/src/js/ui/contextMenu.js @@ -192,16 +192,12 @@ RED.contextMenu = (function() {
disposeMenu()
});
menu.show();
-
- // menu.show({
- // target: $('#red-ui-main-container'),
- // x: options.x... | 11 |
diff --git a/README.md b/README.md @@ -95,6 +95,7 @@ npm install
```
</details>
+<br>
**2. Setup Bitcoin Node**
@@ -121,8 +122,9 @@ rpcuser=username
rpcpassword=password
```
</details>
+<br>
-### 3) Run Bitcoin node
+**3. Run Bitcoin node**
<details>
<summary><b>Example Starting a Bitcoin Node</b></summary>
<br>
@@ -13... | 3 |
diff --git a/website/core/Footer.js b/website/core/Footer.js @@ -64,7 +64,7 @@ class Footer extends React.Component {
<h5>More</h5>
<ExternalLink
className="github-button"
- href={this.props.config.repoUrl}
+ href={'https:github.com/kentcdodds/react-testing-library'}
data-icon="octicon-star"
data-count-href="/kentcdodd... | 4 |
diff --git a/source/app/action/action.yml b/source/app/action/action.yml @@ -33,7 +33,7 @@ runs:
for INPUT in $(echo $INPUTS | jq -r 'to_entries|map("INPUT_\(.key|ascii_upcase)=\(.value|@uri)")|.[]'); do
echo $INPUT >> .env
done
- env | grep -E '^(GITHUB|ACTIONS|CI)' >> .env
+ env | grep -E '^(GITHUB|ACTIONS|CI|TZ)' >>... | 12 |
diff --git a/userscript.user.js b/userscript.user.js @@ -12184,7 +12184,7 @@ var $$IMU_EXPORT$$;
},
mouseover_allow_audio: {
name: "Enable audio",
- description: "Allows audio to be popped up. Note that this is currently highly alpha, please do not expect a good user experience with this yet!",
+ description: "Allows a... | 7 |
diff --git a/components/Map/MapLocationPicker.js b/components/Map/MapLocationPicker.js var MapLocationPicker = function (_props, overrided = false) {
let _self = this;
- var _initMap = function(e){
+ let _initMap = function (e) {
if (!_map) {
_map = L.map(_mapCnt.domID).setView([_value.latitude, _value.longitude], _zoo... | 14 |
diff --git a/src/graphics/device.js b/src/graphics/device.js @@ -585,7 +585,7 @@ Object.assign(pc, function () {
this._textureFloatHighPrecision = undefined;
- this.initializeGrabPassTexture();
+ this.createGrabPass(options.alpha);
};
Object.assign(GraphicsDevice.prototype, {
@@ -879,21 +879,24 @@ Object.assign(pc, fun... | 7 |
diff --git a/metaverse_modules/arrow-loader/index.js b/metaverse_modules/arrow-loader/index.js @@ -181,6 +181,7 @@ export default () => {
// mesh.visible = false;
// console.log('got bounding box', boundingBox);
app.add(mesh);
+ mesh.updateMatrixWorld();
const tailMesh = (() => {
const width = 0.47;
@@ -298,6 +299,7 @@... | 0 |
diff --git a/components/CaptureScroll.js b/components/CaptureScroll.js import React, { Component } from 'react'
import { findDOMNode } from 'react-dom'
+let lastWheelTimestamp
+
+if (typeof window !== 'undefined') {
+ window.addEventListener('wheel', ({ timeStamp }) => {
+ lastWheelTimestamp = timeStamp
+ })
+}
+
const... | 8 |
diff --git a/docs/index.html b/docs/index.html var num = 0;
const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches
- const conf = { logLevel:0, startOnLoad: false, themeCSS:'.label { font-family: Source Sans Pro,Helvetica Neue,Arial,sans-serif; }' };
+ const conf = { logLevel:4, startOnLoad: false... | 12 |
diff --git a/test/jasmine/tests/select_test.js b/test/jasmine/tests/select_test.js @@ -1282,6 +1282,62 @@ describe('Test select box and lasso per trace:', function() {
.then(done);
});
+ it('@flaky should work on barpolar traces', function(done) {
+ var assertPoints = makeAssertPoints(['r', 'theta']);
+ var assertSelec... | 0 |
diff --git a/packages/openneuro-app/src/scripts/utils/bids.js b/packages/openneuro-app/src/scripts/utils/bids.js @@ -4,6 +4,7 @@ import crn from './crn'
import userStore from '../user/user.store'
import fileUtils from './files'
import hex from './hex'
+import datalad from './datalad'
/**
* BIDS
@@ -98,13 +99,13 @@ expo... | 14 |
diff --git a/versions/3.0.md b/versions/3.0.md @@ -311,7 +311,7 @@ url: http://www.apache.org/licenses/LICENSE-2.0.html
#### <a name="serverObject"></a>Server Object
-An object representing a list of one or more servers.
+An object representing a Server.
##### Fixed Fields
| 13 |
diff --git a/RobotNAO/src/main/resources/simulation/worlds/nao_room.wbt b/RobotNAO/src/main/resources/simulation/worlds/nao_room.wbt @@ -29,58 +29,12 @@ Viewpoint {
position -0.4605818580701608 1.9359108350620637 4.435304326155082
followType "None"
}
-Background {
- skyColor [
- 0.827451 0.843137 0.811765
- ]
-}
-Key {... | 7 |
diff --git a/Calculus.js b/Calculus.js @@ -577,8 +577,10 @@ if((typeof module) !== 'undefined' && typeof nerdamer === 'undefined') {
return _.multiply(_.parse(symbol.multiplier), _.parse(dx));
else if(g === S && has_dx) {
//1/x
- if(symbol.power.equals(-1))
+ if(symbol.power.equals(-1)) {
retval = _.symfunction(LOG, [n... | 3 |
diff --git a/packages/insomnia/src/ui/components/swagger-ui.tsx b/packages/insomnia/src/ui/components/swagger-ui.tsx import 'swagger-ui-dist/swagger-ui.css';
import React, { FC, useEffect, useRef } from 'react';
-import { SwaggerConfigs, SwaggerUIBundle as createSwaggerUI } from 'swagger-ui-dist';
+import { Spec, Swagg... | 4 |
diff --git a/src/drivers/npm/driver.js b/src/drivers/npm/driver.js @@ -22,11 +22,12 @@ class Driver {
}, options || {});
this.options.debug = Boolean(this.options.debug);
- this.options.recursive = Boolean(this.options.recursive);
this.options.delay = this.options.recursive ? parseInt(this.options.delay, 10) : 0;
this.... | 14 |
diff --git a/examples/layer-browser/src/examples/sample-layers.js b/examples/layer-browser/src/examples/sample-layers.js @@ -3,25 +3,6 @@ import * as mainDataSamples from '../data-samples';
import * as extraDataSamples from '../../../sample-layers/data';
const dataSamples = Object.assign({}, mainDataSamples, extraDataS... | 2 |
diff --git a/app/src/components/JoinDialog.js b/app/src/components/JoinDialog.js @@ -779,8 +779,8 @@ JoinDialog.propTypes =
mediaPerms : PropTypes.object.isRequired,
setAudioMuted : PropTypes.func.isRequired,
setVideoMuted : PropTypes.func.isRequired,
- locale : PropTypes.object.isRequired,
- localesList : PropTypes.ob... | 12 |
diff --git a/app/shared/components/Global/Form/Field/Token.js b/app/shared/components/Global/Form/Field/Token.js @@ -19,14 +19,16 @@ export default class GlobalFormFieldToken extends Component<Props> {
};
}
onChange = debounce((e, { name, value }) => {
- let asset = (this.props.connection && this.props.connection.chain... | 12 |
diff --git a/config/router.js b/config/router.js @@ -160,10 +160,12 @@ FlowRouter.route('/global-search', {
Utils.manageMatomo();
DocHead.setTitle(TAPi18n.__('globalSearch-title'));
+ if (FlowRouter.getQueryParam('q')) {
Session.set(
'globalQuery',
decodeURIComponent(FlowRouter.getQueryParam('q')),
);
+ }
BlazeLayout.r... | 1 |
diff --git a/middleware/SessionAuthMiddleware.php b/middleware/SessionAuthMiddleware.php @@ -30,7 +30,6 @@ class SessionAuthMiddleware extends BaseMiddleware
$user = $sessionService->GetDefaultUser();
define('GROCY_AUTHENTICATED', true);
define('GROCY_USER_USERNAME', $user->username);
- define('GROCY_USER_ID', $user->i... | 1 |
diff --git a/public/app/style.scss b/public/app/style.scss @@ -583,7 +583,7 @@ cbus-episode {
position: fixed;
right: 0;
top: 0;
- background-color: $grey800;
+ background-color: $white;
color: $white;
width: calc(100% - #{$header-width + $content-width});
height: 100%;
| 12 |
diff --git a/utils/pre-swap-checker/package.json b/utils/pre-swap-checker/package.json "devDependencies": {
"@airswap/order-utils": "0.3.13",
"@airswap/test-utils": "0.1.3",
- "@truffle/hdwallet-provider": "^1.0.17",
- "babel-eslint": "^10.0.2",
- "chai": "^4.2.0",
- "dotenv": "^8.2.0",
- "eslint": "^5.16.0",
- "eslint... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -34189,7 +34189,7 @@ var $$IMU_EXPORT$$;
// https://www.zenfolio.com/img/s/v-2/p3183306634-1.jpg
// http://www.zenfolio.com/cdn/pub/6rhr1mgujado/0/null/m/kd9huj2ukkmjnzvx2t6y/s7/v165/p2381501363-3.jpg?ts=6VH&tk=33XfJjt33Doahj8eJht_fzXm2gP5K0kMoog0BqgEvkE=
// https... | 7 |
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -309,6 +309,7 @@ let currentAppRender = null;
let iframeContainer = null;
let recursion = 0;
let wasDecapitated = false;
+let sceneLoaded = false;
// const apps = [];
metaversefile.setApi({
// apps,
@@ -860,6 +861,9 @@ export default () => {
useGradientMapsInt... | 0 |
diff --git a/scenes/street.scn b/scenes/street.scn "position": [-2, 1, 2],
"quaternion": [0, 0.7071067811865475, 0, 0.7071067811865476],
"start_url": "https://webaverse.github.io/helm/"
+ },
+ {
+ "position": [0, -60, 0],
+ "quaternion": [0, 0, 0, 1],
+ "start_url": "../metaverse_modules/land/",
+ "components": [
+ {
+... | 0 |
diff --git a/generators/kubernetes/templates/console/jhipster-dashboard-console.yml.ejs b/generators/kubernetes/templates/console/jhipster-dashboard-console.yml.ejs @@ -31,7 +31,7 @@ spec:
spec:
initContainers:
- name: init-dependent-service-check
- image: busybox
+ image: busybox:latest
command:
- '/bin/sh'
- '-c'
@@ ... | 2 |
diff --git a/examples/VerticalAndFade.js b/examples/VerticalAndFade.js import React, { Component } from 'react'
import Slider from '../src/slider'
-export default class VerticalSwipeToSlide extends Component {
+export default class VerticalAndFade extends Component {
render() {
const settings = {
dots: true,
| 10 |
diff --git a/helpers/wrapper/reports/SECURITY.md b/helpers/wrapper/reports/SECURITY.md @@ -165,7 +165,7 @@ Rinkeby Etherscan (Wrapper): [0x15FC598E31B98D73a7d56e10f079b827cb97Af82](https:
- \_swapContract = [0x6f337bA064b0a92538a4AfdCF0e60F50eEAe0D5B](https://rinkeby.etherscan.io/address/0x6f337bA064b0a92538a4AfdCF0e60... | 3 |
diff --git a/assets/js/components/wp-dashboard/WPDashboardIdeaHub.js b/assets/js/components/wp-dashboard/WPDashboardIdeaHub.js @@ -63,7 +63,7 @@ function WPDashboardIdeaHub() {
<div className="googlesitekit-idea-hub__wpdashboard--header">
<GoogleLogoIcon width="16" height="16" />
<div className="googlesitekit-idea-hub_... | 2 |
diff --git a/app/src/components/MeetingDrawer/Chat/Menu/Input.js b/app/src/components/MeetingDrawer/Chat/Menu/Input.js @@ -122,11 +122,9 @@ const ChatInput = (props) =>
const handleClearInput = () =>
{
- setEditorState(EditorState.push(
- editorState,
- ContentState.createFromText(''),
- 'remove-range')
- );
+ setEdito... | 1 |
diff --git a/site/news.xml b/site/news.xml @@ -37,7 +37,7 @@ limitations under the License.
<doc:item>
<doc:date iso="2020-07-24T12:00:00+00:00">24 July 2020</doc:date>
- <doc:title>RabbitMQ Cluster Operator for Kubernetes is Open Sourced</doc:title>
+ <doc:title>RabbitMQ Cluster Operator for Kubernetes</doc:title>
<do... | 4 |
diff --git a/src/kiri/slice.js b/src/kiri/slice.js * @returns {Polygon[]} array of top polygons
*/
Top.prototype.shellsAtDepth = function(depth) {
- return this.shells.filter(poly => poly.depth === depth);
+ return this.shells ? this.shells.filter(poly => poly.depth === depth) : [];
};
/** *****************************... | 9 |
diff --git a/source/swap/contracts/Swap.sol b/source/swap/contracts/Swap.sol @@ -145,7 +145,7 @@ contract Swap is ISwap, Ownable {
if (order.sender.wallet != msg.sender) revert SenderInvalid();
}
- // // Validate the signer side of the trade.
+ // Validate the signer side of the trade.
_isAuthorized(order, DOMAIN_SEPAR... | 2 |
diff --git a/articles/design/using-auth0-with-multi-tenant-apps.md b/articles/design/using-auth0-with-multi-tenant-apps.md @@ -3,7 +3,6 @@ description: This articles describes ways to implement and use Auth0 with multi-
crews: crew-2
toc: true
---
-
# Using Auth0 with Multi-Tenant Applications
Multi-tenancy refers to t... | 2 |
diff --git a/src/core/jbig2.js b/src/core/jbig2.js @@ -281,14 +281,8 @@ const Jbig2Image = (function Jbig2ImageClosure() {
function decodeBitmapTemplate0(width, height, decodingContext) {
const decoder = decodingContext.decoder;
const contexts = decodingContext.contextCache.getContexts("GB");
- let contextLabel,
- i,
-... | 1 |
diff --git a/src/og/camera/Camera.js b/src/og/camera/Camera.js @@ -404,6 +404,15 @@ class Camera {
this.refresh();
}
+ /**
+ * Getss camera view angle in degrees.
+ * @public
+ * @returns {number} angle -
+ */
+ getViewAngle() {
+ return this._viewAngle;
+ }
+
/**
* Sets camera to eye position.
* @public
| 0 |
diff --git a/packages/slack/src/utils/check-communicable-to-api-server.ts b/packages/slack/src/utils/check-communicable-to-api-server.ts import axios, { AxiosError } from 'axios';
+/**
+ * Check whether the HTML server responds or not.
+ *
+ * @param serverUri Server URI to connect
+ * @returns AxiosError when error is... | 12 |
diff --git a/packages/material-ui-shell/cra-template-material-ui/template/src/pages/SignIn/SignIn.js b/packages/material-ui-shell/cra-template-material-ui/template/src/pages/SignIn/SignIn.js @@ -2,13 +2,14 @@ import { useHistory } from 'react-router-dom'
import { saveAuthorisation, isAuthorised } from '../../utils/auth... | 1 |
diff --git a/token-metadata/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/metadata.json b/token-metadata/0xB53e08B97724126Bda6d237B94F766c0b81C90fE/metadata.json "symbol": "PIXBY",
"address": "0xB53e08B97724126Bda6d237B94F766c0b81C90fE",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/config/app-types.yml b/config/app-types.yml @@ -28,11 +28,3 @@ appTypes:
question: "What technology are you using for your web app?"
budicon: 349
slug: server-platforms
-
- - title: Backend / API
- name: backend
- description: "An API or service that does JWT validation"
- example: "eg: Hapi.js API, ASP.NE... | 2 |
diff --git a/src/pages/workspace/reimburse/WorkspaceReimburseSection.js b/src/pages/workspace/reimburse/WorkspaceReimburseSection.js @@ -58,7 +58,7 @@ class WorkspaceReimburseSection extends React.Component {
return (
<Section
title={this.props.translate('workspace.reimburse.reimburseReceipts')}
- icon={Expensicons.Off... | 4 |
diff --git a/experimental/generation/docs/get-started.md b/experimental/generation/docs/get-started.md @@ -16,8 +16,10 @@ Open a bash window / command prompt and:
2. Install the CLI tool: `npm install -g @microsoft/botframework-cli`
3. Install the plugin: `bf plugins:install @microsoft/bf-generate`
4. Point npm back to... | 1 |
diff --git a/test/driver.js b/test/driver.js -var tests = [], filters = [], allNames = [];
+var tests = [], filters = [], nameCounts = {};
function Failure(why) {this.message = why;}
Failure.prototype.toString = function() { return this.message; };
@@ -12,13 +12,12 @@ function indexOf(collection, elt) {
function test(n... | 7 |
diff --git a/package/src/components/CartCheckoutButton/v1/CartCheckoutButton.js b/package/src/components/CartCheckoutButton/v1/CartCheckoutButton.js @@ -21,21 +21,22 @@ class CartCheckoutButton extends Component {
/**
* Onclick function to pass to the Button component. Not handled internally, directly passed
*/
- onCli... | 9 |
diff --git a/lib/utils/dataflow/src/index.js b/lib/utils/dataflow/src/index.js @@ -504,15 +504,24 @@ const requestEndParam = (req) => requestParam(req, (name) => /^tend/.test(name))
const getStatusCode = (played) => {
if (played.error) {
const err = played.error;
- if (err.expressionError)
+ if (err.expressionError) {
... | 7 |
diff --git a/templates/combat-sheet.html b/templates/combat-sheet.html <div class="moveh header">Move</div>
<div class="dodgeh header">Dodge</div>
- {{#each data.encumbrance}}
+ {{#each data.encumbrance as | this key |}}
{{#if this.current}}
<div class="encmarker current"></div>
- <div class="enc current {{this.key}}">... | 11 |
diff --git a/lib/shared/addon/utils/amazon.js b/lib/shared/addon/utils/amazon.js @@ -681,7 +681,7 @@ export const EKS_REGIONS = [
];
// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
-export const EKS_VERSIONS = ['1.22', '1.21', '1.20', '1.19']; // sort newest->oldest so we dont have to ... | 2 |
diff --git a/token-metadata/0x9aeB50f542050172359A0e1a25a9933Bc8c01259/metadata.json b/token-metadata/0x9aeB50f542050172359A0e1a25a9933Bc8c01259/metadata.json "symbol": "OIN",
"address": "0x9aeB50f542050172359A0e1a25a9933Bc8c01259",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/src/pages/workshops/submit.js b/src/pages/workshops/submit.js @@ -94,6 +94,10 @@ export default class extends Component {
<TwoColumn>
<Sheet p={5}>
<Editor
+ autoFocus
+ autoCorrect
+ autoCapitalize
+ autoComplete
placeholder="Write your *markdown* here..."
value={value}
onChange={this.handleInputChange}
| 9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.